This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch kylin5 in repository https://gitbox.apache.org/repos/asf/kylin.git
commit b7fff5be2ac0fa10688d378cfd73a0c984fb2662 Author: Yaguang Jia <[email protected]> AuthorDate: Wed Oct 26 10:38:38 2022 +0800 KYLIN-5354 change 'server.max-http-header-size' from 5MB to 32KB from 39341 Co-authored-by: Yaguang Jia <[email protected]> --- src/common-booter/src/main/resources/application.yaml | 2 +- src/data-loading-booter/src/main/resources/application.yaml | 2 +- src/query-booter/src/main/resources/application.yaml | 2 +- src/server/src/main/resources/application.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common-booter/src/main/resources/application.yaml b/src/common-booter/src/main/resources/application.yaml index 0be4da873f..a0e67ed70c 100644 --- a/src/common-booter/src/main/resources/application.yaml +++ b/src/common-booter/src/main/resources/application.yaml @@ -30,7 +30,7 @@ server: context-path: "/kylin" encoding: charset: UTF-8 - max-http-header-size: 5242880 + max-http-header-size: 32KB management: endpoint: diff --git a/src/data-loading-booter/src/main/resources/application.yaml b/src/data-loading-booter/src/main/resources/application.yaml index 44858a5e2a..738a966765 100644 --- a/src/data-loading-booter/src/main/resources/application.yaml +++ b/src/data-loading-booter/src/main/resources/application.yaml @@ -30,7 +30,7 @@ server: context-path: "/kylin" encoding: charset: UTF-8 - max-http-header-size: 5242880 + max-http-header-size: 32KB management: endpoint: diff --git a/src/query-booter/src/main/resources/application.yaml b/src/query-booter/src/main/resources/application.yaml index 31526e0f2f..444b7015c8 100644 --- a/src/query-booter/src/main/resources/application.yaml +++ b/src/query-booter/src/main/resources/application.yaml @@ -30,7 +30,7 @@ server: context-path: "/kylin" encoding: charset: UTF-8 - max-http-header-size: 5242880 + max-http-header-size: 32KB management: endpoint: diff --git a/src/server/src/main/resources/application.yaml b/src/server/src/main/resources/application.yaml index 4fe508de1b..c9d3b74e5a 100644 --- a/src/server/src/main/resources/application.yaml +++ b/src/server/src/main/resources/application.yaml @@ -31,7 +31,7 @@ server: context-path: "/kylin" encoding: charset: UTF-8 - max-http-header-size: 5242880 + max-http-header-size: 32KB management: endpoint:
