From 2a48ae79f3febb78d6dae80fd08b0b2e4b9d35a8 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Wed, 10 Dec 2025 11:05:04 +0100 Subject: [PATCH 1/2] 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, From 8eb67558844c097b1ba72b03f38c2fa1efc18885 Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Wed, 10 Dec 2025 11:25:09 +0100 Subject: [PATCH 2/2] Bump to v1.46.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index fffb8913..6a9804dd 100644 --- a/VERSION +++ b/VERSION @@ -1,4 +1,4 @@ # GNU Make syntax VERSION_MAJOR := 1 VERSION_MINOR := 46 -VERSION_PATCH := 0 +VERSION_PATCH := 1