This is an automated email from the ASF dual-hosted git repository.

gian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 288336b4f26 MSQ: Extend test worker wait timeout to 30s. (#19165)
288336b4f26 is described below

commit 288336b4f26a4c973a263b0754583db5cb412d1c
Author: Gian Merlino <[email protected]>
AuthorDate: Mon Mar 16 10:58:26 2026 -0700

    MSQ: Extend test worker wait timeout to 30s. (#19165)
    
    In CI sometimes we hit this 10s timeout on MSQDrillWindowQueryTest.
    Looking at successful runs, it can indeed take a few seconds sometimes.
    Extending the timeout to 30s should be enough allowance for potentially
    slow CI.
---
 .../src/test/java/org/apache/druid/msq/test/MSQTestWorkerClient.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/multi-stage-query/src/test/java/org/apache/druid/msq/test/MSQTestWorkerClient.java
 
b/multi-stage-query/src/test/java/org/apache/druid/msq/test/MSQTestWorkerClient.java
index 35ce6475b88..711047e78ec 100644
--- 
a/multi-stage-query/src/test/java/org/apache/druid/msq/test/MSQTestWorkerClient.java
+++ 
b/multi-stage-query/src/test/java/org/apache/druid/msq/test/MSQTestWorkerClient.java
@@ -45,7 +45,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
 
 public class MSQTestWorkerClient implements WorkerClient
 {
-  private static final long WORKER_WAIT_TIMEOUT_MS = 
TimeUnit.SECONDS.toMillis(10);
+  private static final long WORKER_WAIT_TIMEOUT_MS = 
TimeUnit.SECONDS.toMillis(30);
 
   protected final Map<String, WorkerRunRef> inMemoryWorkers;
   private final ObjectMapper objectMapper;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to