Commit b1e572b3 authored by Stan Hu's avatar Stan Hu

Merge branch 'pawel/fix_backend_transaction_protected_labels_method' into 'master'

Make BackgroundTransaction#labels public

See merge request gitlab-org/gitlab-ce!15257
parent 9ac714cb
......@@ -6,8 +6,6 @@ module Gitlab
@worker_class = worker_class
end
protected
def labels
{ controller: @worker_class.name, action: 'perform' }
end
......
......@@ -10,4 +10,10 @@ describe Gitlab::Metrics::BackgroundTransaction do
expect(subject.action).to eq('TestWorker#perform')
end
end
describe '#label' do
it 'returns labels based on class name' do
expect(subject.labels).to eq(controller: 'TestWorker', action: 'perform')
end
end
end
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