From bd64ea320ffaa45c9ad91733ab41d5e8e38315d4 Mon Sep 17 00:00:00 2001 From: Chris Ditcher Date: Thu, 3 Oct 2024 09:22:17 -0700 Subject: [PATCH] Grad release 1.24.0 (#146) * Updated to Ubuntu 22.04 * Added application-local to gitignore * Update update-configmap.sh (cherry picked from commit 3a19112c9e7f4a8370172f542914e41c05e90804) * Grad2-2876 warn level log events fix * Increased header size --------- Co-authored-by: Kamal Mohammed Co-authored-by: chris.ditcher Co-authored-by: githubmamatha Co-authored-by: githubmamatha <106563495+githubmamatha@users.noreply.github.com> --- .gitignore | 3 ++- api/src/main/resources/application.yaml | 16 ++++++++++++++++ api/src/test/resources/application.yaml | 9 +++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b2bffea..9b92338 100644 --- a/.gitignore +++ b/.gitignore @@ -34,4 +34,5 @@ build/ ### Environment ### *.env -api/application-local.yaml +### Local dev ### +/src/main/resources/application-local.yaml diff --git a/api/src/main/resources/application.yaml b/api/src/main/resources/application.yaml index 32041d6..1089cb5 100644 --- a/api/src/main/resources/application.yaml +++ b/api/src/main/resources/application.yaml @@ -48,6 +48,15 @@ logging: boot: autoconfigure: logging: ${SPRING_BOOT_AUTOCONFIG_LOG_LEVEL} + jdk: + management: + agent: ERROR + sun: + management: + jmxremote: ERROR + rmi: + transport: + tcp: ERROR authorization: user: ${GRAD_STS_CLIENT_NAME} @@ -146,3 +155,10 @@ endpoint: splunk: log-helper: enabled: ${ENABLE_SPLUNK_LOG_HELPER} + +server: + undertow: + threads: + worker: 128 + io: 16 + max-http-request-header-size: 20000 diff --git a/api/src/test/resources/application.yaml b/api/src/test/resources/application.yaml index 89040b7..c11267e 100644 --- a/api/src/test/resources/application.yaml +++ b/api/src/test/resources/application.yaml @@ -50,6 +50,15 @@ logging: boot: autoconfigure: logging: INFO + jdk: + management: + agent: ERROR + sun: + management: + jmxremote: ERROR + rmi: + transport: + tcp: ERROR authorization: user: grad-business-api