Skip to content

Instantly share code, notes, and snippets.

@jrom
Created October 27, 2010 00:02
Show Gist options
  • Save jrom/648121 to your computer and use it in GitHub Desktop.
Save jrom/648121 to your computer and use it in GitHub Desktop.
Rack app that demonstrates Herkou limitation in header size
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