Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
22a7f1f9
Commit
22a7f1f9
authored
Feb 28, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ObjectStorageQueue concern and test
parent
4dddd585
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
app/workers/concerns/object_storage_queue.rb
app/workers/concerns/object_storage_queue.rb
+8
-0
spec/workers/concerns/object_storage_queue_spec.rb
spec/workers/concerns/object_storage_queue_spec.rb
+19
-0
No files found.
app/workers/concerns/object_storage_queue.rb
0 → 100644
View file @
22a7f1f9
# Concern for setting Sidekiq settings for the various GitLab ObjectStorage workers.
module
ObjectStorageQueue
extend
ActiveSupport
::
Concern
included
do
queue_namespace
:object_storage
end
end
spec/workers/concerns/object_storage_queue_spec.rb
0 → 100644
View file @
22a7f1f9
require
'spec_helper'
describe
ObjectStorageQueue
do
let
(
:worker
)
do
Class
.
new
do
def
self
.
name
'DummyWorker'
end
include
ApplicationWorker
include
ObjectStorageQueue
end
end
it
'sets a default object storage queue automatically'
do
expect
(
worker
.
sidekiq_options
[
'queue'
])
.
to
eq
'object_storage:dummy'
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment