1 # frozen_string_literal: false
2 use Rack::ContentLength
3 headers = { 'content-type' => 'text/plain' }
7 Process.kill(:STOP, $$)
8 sleep # in case STOP signal is not received in time
9 [ 500, headers, [ "Should never get here\n" ] ]
11 [ 200, headers, [ "#$$" ] ]