Skip to content

Commit

Permalink
[UT] Fix testConcurrentlyDropDbAndCreateTable running too slow (#43470)
Browse files Browse the repository at this point in the history
Signed-off-by: Dejun Xia <[email protected]>
(cherry picked from commit 5b42b0e)
  • Loading branch information
nshangyiming authored and mergify[bot] committed Apr 1, 2024
1 parent 67f2473 commit 5bda6fd
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 5bda6fd

Please sign in to comment.