Skip to content

Commit

Permalink
bug #52506 [SecurityBundle] wire the secret for Symfony 6.4 compatibi…
Browse files Browse the repository at this point in the history
…lity (xabbuh)

This PR was merged into the 5.4 branch.

Discussion
----------

[SecurityBundle] wire the secret for Symfony 6.4 compatibility

| Q             | A
| ------------- | ---
| Branch?       | 5.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Issues        |
| License       | MIT

Commits
-------

a15eae4 wire the secret for Symfony 6.4 compatibility
  • Loading branch information
nicolas-grekas committed Nov 9, 2023
2 parents 9b2c2a4 + a15eae4 commit 86c8f97
Showing 1 changed file with 1 addition and 0 deletions.
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 comments on commit 86c8f97

Please sign in to comment.