Skip CheckConnectionTimeout when checkForPoolTimeout is false

release-8.3
Marco Slot 2019-07-22 17:12:58 +02:00 committed by Hanefi Onaldi
parent 3c087159ca
commit 6c94f8a4d5
No known key found for this signature in database
GPG Key ID: 95177DABDC09D1F5
1 changed files with 4 additions and 1 deletions

View File

@ -1801,7 +1801,10 @@ ManageWorkerPool(WorkerPool *workerPool)
} }
/* we might fail the execution or warn the user about connection timeouts */ /* we might fail the execution or warn the user about connection timeouts */
CheckConnectionTimeout(workerPool); if (workerPool->checkForPoolTimeout)
{
CheckConnectionTimeout(workerPool);
}
if (failedConnectionCount >= 1) if (failedConnectionCount >= 1)
{ {