From c84e18c75bddbb40ed4a77d2c7a024983ca11ed0 Mon Sep 17 00:00:00 2001 From: Martin Lowe <martin.lowe@eclipse-foundation.org> Date: Fri, 10 Jan 2025 09:44:58 -0500 Subject: [PATCH] update: up the limit on form data size for HTTP requests hCaptcha challenge data exceeded default max size, so a bump was needed. Upped to 8KB to give us space so this doesn't happen again. --- src/main/resources/application.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 2a995ea9..3f208c28 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -5,6 +5,8 @@ quarkus.http.root-path=/git quarkus.micrometer.enabled=true quarkus.thread-pool.max-threads=250 quarkus.log.min-level=TRACE +## Helpdesk 5508 - hCaptcha has exceeded max attribute size, so it was bumped up from 2k to give us headway +quarkus.http.limits.max-form-attribute-size=8K ## RestClient configs org.eclipsefoundation.git.eca.api.AccountsAPI/mp-rest/url=https://api.eclipse.org -- GitLab