This is an automated email from the ASF dual-hosted git repository.
xyuanlu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git
The following commit(s) were added to refs/heads/master by this push:
new 95341ec92 Fix the CI issue -
TestWorkflowTermination::testWorkflowPausedTimeout by increasing timeout.
(#2526)
95341ec92 is described below
commit 95341ec92d9986906b9ee4ab973dd4200d607da9
Author: Komal Desai <[email protected]>
AuthorDate: Thu Jun 8 13:34:53 2023 -0700
Fix the CI issue - TestWorkflowTermination::testWorkflowPausedTimeout by
increasing timeout. (#2526)
This test case failed just once and that too recently. We haven't changed
any core logic in the code path of Task management.
Co-authored-by: Komal Desai <[email protected]>
---
.../java/org/apache/helix/integration/task/TestWorkflowTermination.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/helix-core/src/test/java/org/apache/helix/integration/task/TestWorkflowTermination.java
b/helix-core/src/test/java/org/apache/helix/integration/task/TestWorkflowTermination.java
index d2a5f73a0..b0df75723 100644
---
a/helix-core/src/test/java/org/apache/helix/integration/task/TestWorkflowTermination.java
+++
b/helix-core/src/test/java/org/apache/helix/integration/task/TestWorkflowTermination.java
@@ -157,7 +157,7 @@ public class TestWorkflowTermination extends TaskTestBase {
Thread.sleep(100);
// Pause the queue
- _driver.waitToStop(workflowName, 10000L);
+ _driver.waitToStop(workflowName, 20000L);
_driver.pollForJobState(workflowName, getJobNameToPoll(workflowName,
JOB_NAME), 10000L,
TaskState.STOPPED);