Skip to content
Snippets Groups Projects
Commit c84e18c7 authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

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.
parent 590afd87
No related branches found
No related tags found
1 merge request!215update: up the limit on form data size for HTTP requests
Pipeline #62715 passed
...@@ -5,6 +5,8 @@ quarkus.http.root-path=/git ...@@ -5,6 +5,8 @@ quarkus.http.root-path=/git
quarkus.micrometer.enabled=true quarkus.micrometer.enabled=true
quarkus.thread-pool.max-threads=250 quarkus.thread-pool.max-threads=250
quarkus.log.min-level=TRACE 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 ## RestClient configs
org.eclipsefoundation.git.eca.api.AccountsAPI/mp-rest/url=https://api.eclipse.org org.eclipsefoundation.git.eca.api.AccountsAPI/mp-rest/url=https://api.eclipse.org
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment