File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,14 @@ bool equalStorageEngines() {
51
51
52
52
// send requests
53
53
std::size_t requestsDone = 0 ;
54
- auto successful = cc->performRequests (requests, 60.0 /* double timeout*/ , requestsDone
55
- ,Logger::FIXME
56
- ,false );
54
+ // We are using a very long timeout here, since in our Jenkins we have
55
+ // observed that some dbservers need a long time to come up, since the
56
+ // I/O system is overloaded (lots of servers starting at the same time).
57
+ // Furthermore, this long timeout here does not really hurt. Besides,
58
+ // failure here is fatal for this coordinator, and thus for the whole
59
+ // test in a single coordinator scenario.
60
+ auto successful = cc->performRequests (requests, 600.0 /* 20 fold timeout*/ ,
61
+ requestsDone ,Logger::FIXME ,false );
57
62
58
63
if (successful != requests.size ()){
59
64
LOG_TOPIC (ERR, Logger::FIXME) << " could not reach all dbservers for engine check" ;
You can’t perform that action at this time.
0 commit comments