From 019aa3876a79ece2d89803ab28c8c655314db4d2 Mon Sep 17 00:00:00 2001 From: Costin Grigoras Date: Fri, 30 May 2025 11:03:34 +0200 Subject: [PATCH] Increase minimum read timeout to 5s in CcdbApi.cxx Increase the minimum read timeout from 1 to 5s as this case is also used when reading from the production CCDB instance and 1s can be too little at times (especially at large RTTs). And there are no alternatives to use. --- CCDB/src/CcdbApi.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CCDB/src/CcdbApi.cxx b/CCDB/src/CcdbApi.cxx index fa42d62cc3633..bb2b69e84c4f7 100644 --- a/CCDB/src/CcdbApi.cxx +++ b/CCDB/src/CcdbApi.cxx @@ -232,7 +232,7 @@ void CcdbApi::init(std::string const& host) deploymentMode == o2::framework::DeploymentMode::FST) { mCurlTimeoutDownload = 15; } else if (deploymentMode == o2::framework::DeploymentMode::Local) { - mCurlTimeoutDownload = 1; + mCurlTimeoutDownload = 5; } }