mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #14224 from nextcloud/backport/9875/stable13
[stable13] Fix #9864: Decrease $maxDelay in Throttler.php
This commit is contained in:
commit
fb2de45fd0
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