Commit 54c5a90e authored by Stan Hu's avatar Stan Hu

Merge branch 'nicolasdular/fix-middleware-autoreloading' into 'master'

Fix autoload issue for Gitlab::Metrics::RackMiddleware

See merge request gitlab-org/gitlab!53713
parents bd3a20b8 19418236
......@@ -10,7 +10,7 @@ module Gitlab
# env - A Hash containing Rack environment details.
def call(env)
trans = WebTransaction.new(env)
trans = Gitlab::Metrics::WebTransaction.new(env)
begin
retval = trans.run { @app.call(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