diff options
author | Rémy Coutable <remy@rymai.me> | 2017-07-18 13:56:36 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-07-18 13:56:36 +0200 |
commit | 66c7f518974cf3e3c9d9914fe7dd5b89f216889b (patch) | |
tree | 95a0aa912d40898db6e7d476cc6c1e43553efa73 /lib | |
parent | f48264555563a906472795bc9fbccd09be4b6a47 (diff) | |
download | gitlab-ce-66c7f518974cf3e3c9d9914fe7dd5b89f216889b.tar.gz |
Bump peek-performance_bar to 1.3.0 and get rid of a monkey-patchrc/bump-peek-performance_bar
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/performance_bar/peek_performance_bar_with_rack_body.rb | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/gitlab/performance_bar/peek_performance_bar_with_rack_body.rb b/lib/gitlab/performance_bar/peek_performance_bar_with_rack_body.rb deleted file mode 100644 index d939a6ea18d..00000000000 --- a/lib/gitlab/performance_bar/peek_performance_bar_with_rack_body.rb +++ /dev/null @@ -1,22 +0,0 @@ -# This solves a bug with a X-Senfile header that wouldn't be set properly, see -# https://github.com/peek/peek-performance_bar/pull/27 -module Gitlab - module PerformanceBar - module PeekPerformanceBarWithRackBody - def call(env) - @env = env - reset_stats - - @total_requests += 1 - first_request if @total_requests == 1 - - env['process.request_start'] = @start.to_f - env['process.total_requests'] = total_requests - - status, headers, body = @app.call(env) - body = Rack::BodyProxy.new(body) { record_request } - [status, headers, body] - end - end - end -end |