8000 more debugging with willi · arangodb/arangodb@a4f12fe · GitHub
[go: up one dir, main page]

Skip to content

Commit a4f12fe

Browse files
committed
more debugging with willi
1 parent 03ae049 commit a4f12fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/V8/v8-utils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ std::chrono::duration<double> getMaxTimeoutConnectionToBeDead(std::chrono::durat
277277
LOG_DEVEL << "timeout in minuites: " <<std::chrono::duration_cast<std::chrono::minutes>(timeout).count(); // Are 20 minutes correct?
278278

279279
if (delta > timeout) { // -29 s > 20 minutes - are you sure?
280-
LOG_DEVEL << "original timeout";
280+
LOG_DEVEL << "original timeout: " << std::chrono::duration_cast<std::chrono::seconds>(timeout).count(); ;
281281
return timeout;
282282
}
283-
LOG_DEVEL << "modified timeout";
283+
LOG_DEVEL << "modified timeout" << std::chrono::duration_cast<std::chrono::seconds>(delta).count();
284284
return delta; // Returns -29 seconds?! Not sure if you want that!
285285

286286
}

0 commit comments

Comments
 (0)
0