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

fix uninitialized constant Puma::ControlCLI::StateFile

This commit is contained in:
mitto nagisa 2016-02-26 15:16:07 +09:00
parent 91a43ffcb6
commit 319d813e03

View file

@ -1,4 +1,5 @@
require 'optparse'
require 'puma'
require 'puma/const'
require 'puma/configuration'
require 'uri'
@ -108,7 +109,7 @@ module Puma
raise "State file not found: #{@state}"
end
sf = StateFile.new
sf = Puma::StateFile.new
sf.load @state
@control_url = sf.control_url