Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukang-Lian committed Jan 9, 2025
1 parent dce5b01 commit cdd2cb9
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ suite("test_cumu_compaction_with_delete") {
break;
}
Thread.sleep(10000)

def duration = System.currentTimeMillis() - now
if(duration > 10 * 60 * 1000) {
assertTrue(false)
}
}
def time_diff = System.currentTimeMillis() - now
logger.info("time_diff:" + time_diff)
Expand Down Expand Up @@ -108,6 +113,11 @@ suite("test_cumu_compaction_with_delete") {
break;
}
Thread.sleep(10000)

def duration = System.currentTimeMillis() - now
if(duration > 10 * 60 * 1000) {
assertTrue(false)
}
}
def time_diff = System.currentTimeMillis() - now
logger.info("time_diff:" + time_diff)
Expand Down

0 comments on commit cdd2cb9

Please sign in to comment.