Skip to content

Commit ddffd12

Browse files
costingshahor02
authored andcommitted
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.
1 parent 7335adc commit ddffd12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CCDB/src/CcdbApi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ void CcdbApi::init(std::string const& host)
232232
deploymentMode == o2::framework::DeploymentMode::FST) {
233233
mCurlTimeoutDownload = 15;
234234
} else if (deploymentMode == o2::framework::DeploymentMode::Local) {
235-
mCurlTimeoutDownload = 1;
235+
mCurlTimeoutDownload = 5;
236236
}
237237
}
238238

0 commit comments

Comments
 (0)