Skip to content

Commit

Permalink
[UT] Fix testConcurrentlyDropDbAndCreateTable running too slow (backp…
Browse files Browse the repository at this point in the history
…ort #43470) (#43486)

Co-authored-by: yiming <[email protected]>
  • Loading branch information
mergify[bot] and nshangyiming authored Apr 2, 2024
1 parent 28b380d commit a825814
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 a825814

Please sign in to comment.