-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Closed
Closed
Copy link
Description
Symfony version(s) affected
7.3
Description
The configuration of login_throttling do not allow to configure storage_service
:
Lines 66 to 71 in cd87bde
$limiterOptions = [ | |
'policy' => 'fixed_window', | |
'limit' => $config['max_attempts'], | |
'interval' => $config['interval'], | |
'lock_factory' => $config['lock_factory'], | |
]; |
Besides it's supposed to be supported:
Line 108 in cd87bde
if (null === $storageId = $limiterConfig['storage_service'] ?? null) { |
How to reproduce
Configure a login_throttling
: it's impossible to specify the storage service
Possible Solution
No response
Additional Context
No response