8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ae049 commit a4f12feCopy full SHA for a4f12fe
lib/V8/v8-utils.cpp
@@ -277,10 +277,10 @@ std::chrono::duration<double> getMaxTimeoutConnectionToBeDead(std::chrono::durat
277
LOG_DEVEL << "timeout in minuites: " <<std::chrono::duration_cast<std::chrono::minutes>(timeout).count(); // Are 20 minutes correct?
278
279
if (delta > timeout) { // -29 s > 20 minutes - are you sure?
280
- LOG_DEVEL << "original timeout";
+ LOG_DEVEL << "original timeout: " << std::chrono::duration_cast<std::chrono::seconds>(timeout).count(); ;
281
return timeout;
282
}
283
- LOG_DEVEL << "modified timeout";
+ LOG_DEVEL << "modified timeout" << std::chrono::duration_cast<std::chrono::seconds>(delta).count();
284
return delta; // Returns -29 seconds?! Not sure if you want that!
285
286
0 commit comments