From af24197a8fa4b51942c8bab860957477c17e4a1d Mon Sep 17 00:00:00 2001 From: Mohamad Abras Date: Mon, 19 Oct 2015 11:52:03 +0000 Subject: [PATCH] resolve 'exceeded available parameter key space' error --- lib/i18n_yaml_editor/app.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/i18n_yaml_editor/app.rb b/lib/i18n_yaml_editor/app.rb index d196ef2..8738da4 100644 --- a/lib/i18n_yaml_editor/app.rb +++ b/lib/i18n_yaml_editor/app.rb @@ -25,6 +25,7 @@ def start store.create_missing_keys $stdout.puts " * Starting web editor at port 5050" + Rack::Utils.key_space_limit = 131072 # 2 times the default Rack::Server.start :app => Web, :Port => 5050 end