1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Fix typo in phased-restart response

Sponsored-by: CentroNet Marketing
This commit is contained in:
Michael J. Cohen 2013-08-06 15:47:40 -04:00
parent 2ef57daf8b
commit 678a6c73c9

View file

@ -43,7 +43,7 @@ module Puma
when /\/phased-restart$/
if !@cli.phased_restart
return rack_response(404, '{ "error": "phased resart not available" }')
return rack_response(404, '{ "error": "phased restart not available" }')
else
return rack_response(200, OK_STATUS)
end