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:
parent
91a43ffcb6
commit
319d813e03
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue