提交 cb606c5a 编写于 作者: S 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
......@@ -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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册