mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Fix #9864: Decrease $maxDelay in Throttler.php
Signed-off-by: Mark Berezovsky <xpnf@yandex.ru>
This commit is contained in:
parent
84a1c915e6
commit
ad66c6bf08
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ class Throttler {
|
|||
return 0;
|
||||
}
|
||||
|
||||
$maxDelay = 30;
|
||||
$maxDelay = 25;
|
||||
$firstDelay = 0.1;
|
||||
if ($attempts > (8 * PHP_INT_SIZE - 1)) {
|
||||
// Don't ever overflow. Just assume the maxDelay time:s
|
||||
|
|
|
|||
Loading…
Reference in a new issue