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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
4a6ba82b
Commit
4a6ba82b
authored
Dec 13, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused queues
parent
3cad04cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
4 deletions
+17
-4
config/sidekiq_queues.yml
config/sidekiq_queues.yml
+0
-3
db/post_migrate/20171213160445_migrate_github_importer_advance_stage_sidekiq_queue.rb
...45_migrate_github_importer_advance_stage_sidekiq_queue.rb
+16
-0
db/schema.rb
db/schema.rb
+1
-1
No files found.
config/sidekiq_queues.yml
View file @
4a6ba82b
...
...
@@ -25,8 +25,6 @@
- [new_note, 2]
- [new_issue, 2]
- [new_merge_request, 2]
- [build, 2]
# Replaced by pipeline
-
[
pipeline
,
2
]
# Replaced by pipeline_*
- [pipeline_processing, 5]
- [pipeline_creation, 4]
- [pipeline_default, 3]
...
...
@@ -43,7 +41,6 @@
- [repository_fork, 1]
- [repository_import, 1]
- [github_importer, 1]
-
[
github_importer_advance_stage
,
1
]
# Replaced by github_import_advance_stage
- [github_import_advance_stage, 1]
- [project_service, 1]
- [delete_user, 1]
...
...
db/post_migrate/20171213160445_migrate_github_importer_advance_stage_sidekiq_queue.rb
0 → 100644
View file @
4a6ba82b
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
MigrateGithubImporterAdvanceStageSidekiqQueue
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
up
sidekiq_queue_migrate
'github_importer_advance_stage'
,
to:
'github_import_advance_stage'
end
def
down
sidekiq_queue_migrate
'github_import_advance_stage'
,
to:
'github_importer_advance_stage'
end
end
db/schema.rb
View file @
4a6ba82b
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201712
06221519
)
do
ActiveRecord
::
Schema
.
define
(
version:
201712
13160445
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
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