Created
October 27, 2010 00:02
-
-
Save jrom/648121 to your computer and use it in GitHub Desktop.
Rack app that demonstrates Herkou limitation in header size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run lambda { |env| | |
headers = { "key"=> ("a" * 3455)} # 3454 works, 3455 don't | |
[200, headers, "Hello World!\n"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment