danny0405 commented on code in PR #13229:
URL: https://github.com/apache/hudi/pull/13229#discussion_r2101425608
##########
hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/rollback/TestCopyOnWriteRollbackActionExecutor.java:
##########
@@ -284,7 +295,10 @@ public void testRollbackScale() throws Exception {
private void performRollbackAndValidate(boolean isUsingMarkers,
HoodieWriteConfig cfg, HoodieTable table,
List<FileSlice>
firstPartitionCommit2FileSlices,
- List<FileSlice>
secondPartitionCommit2FileSlices) throws IOException {
+ List<FileSlice>
secondPartitionCommit2FileSlices) throws IOException, InterruptedException {
+ // Create a client to start timeline service needed by the rollback action
executor
+ // Sleep for timeline service to start listening on the port
+ Thread.sleep(1000);
Review Comment:
The sleep does not make sense, let's get rid of it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]