mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
10 lines
194 B
Text
10 lines
194 B
Text
|
require 'securerandom'
|
||
|
|
||
|
long_header_hash = {}
|
||
|
|
||
|
30.times do |i|
|
||
|
long_header_hash["X-My-Header-#{i}"] = SecureRandom.hex(1000)
|
||
|
end
|
||
|
|
||
|
run lambda { |env| [200, long_header_hash, ["Hello World"]] }
|