2 require 'unicorn/oob_gc'
3 use Rack::ContentLength
4 use Rack::ContentType, "text/plain"
10 ObjectSpace.each_object(Kgio::Socket) do |x|
11 x.closed? or abort "not closed #{x}"
16 if "/gc_reset" == env["PATH_INFO"] && "POST" == env["REQUEST_METHOD"]
19 [ 200, {}, [ "#$gc_started\n" ] ]