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

9 lines
154 B
Ruby

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