Sha256: 24e4b889b9da2b4f693da0860aa84c3f1a28ed8b46134b124df98ca4a7cce201
Contents?: true
Size: 442 Bytes
Versions: 68
Compression:
Stored size: 442 Bytes
Contents
#\-E none require 'unicorn/oob_gc' use Rack::ContentLength use Rack::ContentType, "text/plain" use Unicorn::OobGC $gc_started = false # Mock GC.start def GC.start ObjectSpace.each_object(Kgio::Socket) do |x| x.closed? or abort "not closed #{x}" end $gc_started = true end run lambda { |env| if "/gc_reset" == env["PATH_INFO"] && "POST" == env["REQUEST_METHOD"] $gc_started = false end [ 200, {}, [ "#$gc_started\n" ] ] }
Version data entries
68 entries across 68 versions & 7 rubygems