From: Julien Lancelot Date: Fri, 10 Oct 2014 09:41:28 +0000 (+0200) Subject: SONAR-5577 Web services don't support parameters bigger than 65kb X-Git-Tag: 4.5.1-RC1~45 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=324affe94211cc10b8d50d077d648ff9571fd3f0;p=sonarqube.git SONAR-5577 Web services don't support parameters bigger than 65kb --- 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 + +