Bug fix, when io_timeouts are enabled in warn only mode they weren’t being logged at all.

This commit is contained in:
Stephen Atherton 2017-07-05 14:43:10 -07:00
parent aa1c903b52
commit 39ff1b3c52
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ private:
}
void setIOTimeout(double timeout) {
ioTimeout = timeout;
ioTimeout = fabs(timeout);
timeoutWarnOnly = timeout < 0;
}