Skip to content

Commit a0496b2

Browse files
authored
Merge pull request #9875 from wiyh12nf89x/Issue#9864_WebDAV_timeout_fix_maxDelay
Fix #9864: Decrease $maxDelay in Throttler.php
2 parents 3ea9f18 + ad66c6b commit a0496b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/Security/Bruteforce/Throttler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public function getDelay($ip, $action = '') {
228228
return 0;
229229
}
230230

231-
$maxDelay = 30;
231+
$maxDelay = 25;
232232
$firstDelay = 0.1;
233233
if ($attempts > (8 * PHP_INT_SIZE - 1)) {
234234
// Don't ever overflow. Just assume the maxDelay time:s

0 commit comments

Comments
 (0)