8000 [SecurityBundle] wire the secret for Symfony 6.4 compatibility by xabbuh · Pull Request #52506 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[SecurityBundle] wire the secret for Symfony 6.4 compatibility #52506

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
wire the secret for Symfony 6.4 compatibility
  • Loading branch information
xabbuh committed Nov 9, 2023
commit a15eae4081c0af60ba85405f1e10d67352ea4d54
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ public function createAuthenticator(ContainerBuilder $container, string $firewal
$container->register($config['limiter'] = 'security.login_throttling.'.$firewallName.'.limiter', DefaultLoginRateLimiter::class)
->addArgument(new Reference('limiter.'.$globalId))
->addArgument(new Reference('limiter.'.$localId))
->addArgument('%kernel.secret%')
;
}

Expand Down
0