From 3b986d0fd35c019fb4656910781abf980deb19ce Mon Sep 17 00:00:00 2001 From: AndreiDombrovschi Date: Wed, 18 Jun 2025 11:37:45 +0300 Subject: [PATCH] Added rate limiting through application.properties file to the /owners/find endpoint Signed-off-by: Author Name --- src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 9b63e0b69..c0e02f7d8 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -17,7 +17,7 @@ spring.messages.basename=messages/messages management.endpoints.web.exposure.include=* # Rate Limiting -rate-limit.max-requests=5 +rate-limit.max-requests=4 rate-limit.window-size-minutes=1 rate-limit.enabled=true