fix missing @ symbol

This commit is contained in:
Mike Greiling 2017-02-27 12:20:00 -06:00
parent 48707bc2ab
commit 780e3e976d
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ module Gitlab
@proxy_port = opts.fetch(:proxy_port, 3808)
@proxy_path = opts[:proxy_path] if opts[:proxy_path]
super(app, backend: "http://#{proxy_host}:#{proxy_port}", **opts)
super(app, backend: "http://#{@proxy_host}:#{@proxy_port}", **opts)
end
def perform_request(env)