examples/config.ru in rack-server_status-0.0.2 vs examples/config.ru in rack-server_status-0.0.3

- old
+ new

@@ -3,10 +3,10 @@ use Rack::ServerStatus, scoreboard_path: './tmp' class HelloWorldApp def call(env) - sleep 10 + #sleep 10 [ 200, { 'Content-Type' => 'text/plain' }, ['Hello World!'] ] end end map "/foo" do