Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chungen0126 committed Dec 30, 2024
1 parent d205ef0 commit 9237309
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,9 @@ public static void waitForDeletedBlockLog(StorageContainerManager scm)
if (scm.getScmBlockManager().getDeletedBlockLog().getNumOfValidTransactions() > 0) {
return true;
}
return false;
} catch (IOException e) {
throw new RuntimeException(e);
}
return false;
}, 100, 3000);
}

Expand All @@ -193,6 +192,6 @@ public static void waitBlockDeleted(StorageContainerManager scm)
} catch (IOException e) {
}
return false;
}, 100, 30000);
}, 1000, 60000);
}
}

0 comments on commit 9237309

Please sign in to comment.