Rack RangeError


Today I’ve got strange error on production - RangeError (exceeded available parameter key space).

This exception raises when users want to submit big post data, you can read more on github issue - https://github.com/rack/rack/issues/318

So, good decision to avoid and fix this problem is set parameter

Rack::Utils.key_space_limit = 999999999

This did the trick.