Add plugin queue to all_queues.yml

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2018-02-26 18:17:17 +02:00
parent 98831a4867
commit 79d911204c
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
2 changed files with 2 additions and 1 deletions

View File

@ -84,6 +84,7 @@
- new_note
- pages
- pages_domain_verification
- plugin
- post_receive
- process_commit
- project_cache

View File

@ -21,7 +21,7 @@ describe PluginWorker do
allow(Gitlab::Plugin).to receive(:execute).with(filename, data).and_raise('Permission denied')
expect { subject.perform(filename, data) }.to_not raise_error
expect { subject.perform(filename, data) }.not_to raise_error
end
end
end