Skip CheckConnectionTimeout when checkForPoolTimeout is false

pull/2848/head
Marco Slot 2019-07-22 17:12:58 +02:00
parent a3811b1e55
commit bd111366b0
1 changed files with 4 additions and 1 deletions

View File

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