Commit 780e3e97 authored by Mike Greiling's avatar Mike Greiling

fix missing @ symbol

parent 48707bc2
...@@ -9,7 +9,7 @@ module Gitlab ...@@ -9,7 +9,7 @@ module Gitlab
@proxy_port = opts.fetch(:proxy_port, 3808) @proxy_port = opts.fetch(:proxy_port, 3808)
@proxy_path = opts[:proxy_path] if opts[:proxy_path] @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 end
def perform_request(env) def perform_request(env)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment