Sha256: 749a09a154f68066cd459f843c807d9be641d8e3e3d7f679be37424efe1c6fb7

Contents?: true

Size: 452 Bytes

Versions: 68

Compression:

Stored size: 452 Bytes

Contents

#\-E none
require 'unicorn/oob_gc'
use Rack::ContentLength
use Rack::ContentType, "text/plain"
use Unicorn::OobGC, 5, /BAD/
$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

Version Path
unicorn-6.1.0 t/oob_gc_path.ru
unicorn-6.0.0 t/oob_gc_path.ru
unicorn-5.8.0 t/oob_gc_path.ru
unicorn-5.7.0 t/oob_gc_path.ru
unicorn-5.6.0 t/oob_gc_path.ru
unicorn-5.5.5 t/oob_gc_path.ru
unicorn-5.5.4 t/oob_gc_path.ru
unicorn-5.5.3 t/oob_gc_path.ru
unicorn-5.5.2 t/oob_gc_path.ru
unicorn-5.5.1 t/oob_gc_path.ru
unicorn-5.5.0.1.g6836 t/oob_gc_path.ru
unicorn-5.5.0 t/oob_gc_path.ru
unicorn-5.5.0.pre1 t/oob_gc_path.ru
unicorn-5.4.1 t/oob_gc_path.ru
unicorn-5.4.0 t/oob_gc_path.ru
unicorn-5.3.1 t/oob_gc_path.ru
unicorn-shopify-5.3.0 t/oob_gc_path.ru
unicorn-5.3.0 t/oob_gc_path.ru
unicorn-5.3.0.pre1 t/oob_gc_path.ru
unicorn-shopify-5.2.0.6 t/oob_gc_path.ru