mirror of https://github.com/citusdata/citus.git
Skip CheckConnectionTimeout when checkForPoolTimeout is false
parent
a3811b1e55
commit
bd111366b0
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue