use connect_timeout value for execution margin

This commit is contained in:
Mikael Nordfeldth 2016-01-22 12:19:17 +01:00
parent 3f9c1c142a
commit 81f9a59f25
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class OpportunisticQueueManager extends DBQueueManager
}
if ($this->max_execution_margin === null) {
$this->max_execution_margin = 10; // think PHP's max exec time, minus this value to have time for timeouts etc.
$this->max_execution_margin = common_config('http', 'connect_timeout') + 1; // think PHP's max exec time, minus this value to have time for timeouts etc.
}
return parent::__construct();