summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2016-05-26 17:53:21 +0200
committerJacob Vosmaer <jacob@gitlab.com>2016-05-26 17:53:21 +0200
commit5771114f9b5dba9c17b273a5dec0ef6900f6da9d (patch)
tree9843861e9e98ea40ce33a2e0f02b5b28b3fffcf4 /spec/lib/gitlab
parent6ec2730fb371dbfdf84f98e2061431367c3927d1 (diff)
downloadgitlab-ce-5771114f9b5dba9c17b273a5dec0ef6900f6da9d.tar.gz
Rename metric to 'rails queue duration'
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/middleware/rails_queue_duration_spec.rb (renamed from spec/lib/gitlab/middleware/proxy_flight_time_spec.rb)4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/middleware/proxy_flight_time_spec.rb b/spec/lib/gitlab/middleware/rails_queue_duration_spec.rb
index f59166d5c29..fd6f684db0c 100644
--- a/spec/lib/gitlab/middleware/proxy_flight_time_spec.rb
+++ b/spec/lib/gitlab/middleware/rails_queue_duration_spec.rb
@@ -1,6 +1,6 @@
require 'spec_helper'
-describe Gitlab::Middleware::ProxyFlightTime do
+describe Gitlab::Middleware::RailsQueueDuration do
let(:app) { double(:app) }
let(:middleware) { described_class.new(app) }
let(:env) { {} }
@@ -23,7 +23,7 @@ describe Gitlab::Middleware::ProxyFlightTime do
it 'sets proxy_flight_time and calls the app when the header is present' do
env['HTTP_GITLAB_WORHORSE_PROXY_START'] = '123'
- expect(transaction).to receive(:set).with(:proxy_flight_time, an_instance_of(Float))
+ expect(transaction).to receive(:set).with(:rails_queue_duration, an_instance_of(Float))
expect(middleware.call(env)).to eq('yay')
end
end