Forgotten "+"
This commit is contained in:
parent
70c31a6149
commit
1424559bee
|
@ -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('now ' . $delay . ' seconds');
|
||||
$next = DateTimeFormat::utc('now + ' . $delay . ' seconds');
|
||||
|
||||
dba::update('queue', ['last' => DateTimeFormat::utcNow(), 'retrial' => $retrial + 1, 'next' => $next], ['id' => $id]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue