Files
nginx-unit/test/ruby/errors_puts_int/config.ru
2018-03-21 18:26:40 +03:00

7 lines
122 B
Ruby

app = Proc.new do |env|
env['rack.errors'].puts(1234567890)
['200', {'Content-Length' => '0'}, ['']]
end
run app