From e251c78532688e9e5b036d5b2de8ae99af9523eb Mon Sep 17 00:00:00 2001 From: Christian Scheb Date: Wed, 15 Nov 2023 22:20:38 +0100 Subject: [PATCH] Disable login throttling for test cases --- app/config/packages/test/security.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/config/packages/test/security.yaml diff --git a/app/config/packages/test/security.yaml b/app/config/packages/test/security.yaml new file mode 100644 index 00000000..298acd19 --- /dev/null +++ b/app/config/packages/test/security.yaml @@ -0,0 +1,5 @@ +security: + firewalls: + main: + # In integration tests the login throttling should be disabled + login_throttling: false