From 9d1071aaad82a52d4a2adbacad839cff88d90ea3 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Wed, 10 Dec 2025 11:05:04 +0100 Subject: [PATCH] increase task startup timeout until O2-6547 is fixed Tasks take longer to start up due to performance regression in ROOT reported at https://github.com/root-project/root/issues/20673 We increase the startup timeout until the issue is resolved. --- executor/executorcmd/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executor/executorcmd/client.go b/executor/executorcmd/client.go index 2fa55c0b..738a7e52 100644 --- a/executor/executorcmd/client.go +++ b/executor/executorcmd/client.go @@ -52,7 +52,7 @@ const ( ProtobufTransport = ControlTransport(0) JsonTransport = ControlTransport(1) ) -const GRPC_DIAL_TIMEOUT = 30 * time.Second +const GRPC_DIAL_TIMEOUT = 45 * time.Second func NewClient( controlPort uint64,