Improved date time formula thing.

This commit is contained in:
Michael 2018-02-08 19:33:40 +00:00
parent d70a20a466
commit 70c31a6149
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Queue
// Calculate the delay until the next trial
$delay = (($retrial + 3) ** 4) + (rand(1, 30) * ($retrial + 1));
$next = DateTimeFormat::utc(date('c', time() + $delay));
$next = DateTimeFormat::utc('now ' . $delay . ' seconds');
dba::update('queue', ['last' => DateTimeFormat::utcNow(), 'retrial' => $retrial + 1, 'next' => $next], ['id' => $id]);
}