increase timespan between each retry

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2019-02-20 10:20:45 +01:00
parent d4134982f5
commit f6b0a65c5a
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
1 changed files with 5 additions and 3 deletions

View File

@ -36,8 +36,8 @@ class RetryJob extends Job {
private $jobList;
/** @var string */
private $lookupServer;
/** @var int how much time should be between two tries (10 minutes) */
private $interval = 600;
/** @var int how much time should be between two, will be increased for each retry */
private $interval = 100;
/**
* @param IClientService $clientService
@ -108,7 +108,9 @@ class RetryJob extends Job {
* @return bool
*/
protected function shouldRun($argument) {
return !isset($argument['lastRun']) || ((time() - $argument['lastRun']) > $this->interval);
$retryNo = (int)$argument['retryNo'];
$delay = $this->interval * 6 ** $retryNo;
return !isset($argument['lastRun']) || ((time() - $argument['lastRun']) > $delay);
}
/**