From 324affe94211cc10b8d50d077d648ff9571fd3f0 Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Fri, 10 Oct 2014 11:41:28 +0200 Subject: [PATCH] SONAR-5577 Web services don't support parameters bigger than 65kb --- .../sonar-web/src/main/webapp/WEB-INF/config/environment.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb b/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb index d7b46739219..cbe9edcf315 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb +++ b/server/sonar-web/src/main/webapp/WEB-INF/config/environment.rb @@ -250,3 +250,9 @@ DatabaseVersion.automatic_setup # All these changes are prefixed by the comment #sonar # # + +# Increase size of form parameters +# See http://jira.codehaus.org/browse/SONAR-5577 +Rack::Utils.key_space_limit = 262144 # 4 times the default size + + -- 2.39.5