Sha256: ee2743ade074c22827e24cbe47f088ae8d41d19ac5de81098757e9bab4baf399

Contents?: true

Size: 256 Bytes

Versions: 93

Compression:

Stored size: 256 Bytes

Contents

use Rack::ContentType, "text/plain"
fifo_path = ENV["TEST_FIFO"] or abort "TEST_FIFO not set"
run lambda { |env|
  pid = fork do
    File.open(fifo_path, "wb") do |fp|
      fp.write "HIHI"
    end
  end
  Process.detach(pid)
  [ 200, {}, [ pid.to_s ] ]
}

Version data entries

93 entries across 93 versions & 12 rubygems

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