Skip to content

Commit

Permalink
[UT] Fix testConcurrentlyDropDbAndCreateTable running too slow
Browse files Browse the repository at this point in the history
Signed-off-by: Dejun Xia <[email protected]>
  • Loading branch information
nshangyiming committed Apr 1, 2024
1 parent 1d2f582 commit 3b9f3af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void testConcurrentlyDropDbAndCreateTable() throws Exception {
Thread controlThread = new Thread(() -> {
int times = 0;
Random random = new Random();
while (times < 10) {
while (times < 5) {
try {
System.out.println("creating table and db time: " + times);
starRocksAssert.withDatabase("concurrent_test_db");
Expand Down

0 comments on commit 3b9f3af

Please sign in to comment.