mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
9 lines
282 B
Text
9 lines
282 B
Text
|
# call with "GET /sleep<d> HTTP/1.1\r\n\r\n", where <d> is the number of
|
||
|
# seconds to sleep, returns process pid
|
||
|
|
||
|
run lambda { |env|
|
||
|
dly = (env['REQUEST_PATH'][/\/sleep(\d+)/,1] || '0').to_i
|
||
|
sleep dly
|
||
|
[200, {"Content-Type" => "text/plain"}, ["Slept #{dly} #{Process.pid}"]]
|
||
|
}
|