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
66032fe5
Commit
66032fe5
authored
Jun 30, 2021
by
Heinrich Lee Yu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run batched migrations on self-managed instances
Enables the batched migration cron worker for all instances
parent
ab1b772f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+3
-6
No files found.
config/initializers/1_settings.rb
View file @
66032fe5
...
...
@@ -576,12 +576,9 @@ Settings.cron_jobs['users_deactivate_dormant_users_worker']['job_class'] = 'User
Settings
.
cron_jobs
[
'ci_delete_unit_tests_worker'
]
||=
Settingslogic
.
new
({})
Settings
.
cron_jobs
[
'ci_delete_unit_tests_worker'
][
'cron'
]
||=
'0 0 * * *'
Settings
.
cron_jobs
[
'ci_delete_unit_tests_worker'
][
'job_class'
]
=
'Ci::DeleteUnitTestsWorker'
Gitlab
.
com
do
Settings
.
cron_jobs
[
'batched_background_migrations_worker'
]
||=
Settingslogic
.
new
({})
Settings
.
cron_jobs
[
'batched_background_migrations_worker'
][
'cron'
]
||=
'* * * * *'
Settings
.
cron_jobs
[
'batched_background_migrations_worker'
][
'job_class'
]
=
'Database::BatchedBackgroundMigrationWorker'
end
Settings
.
cron_jobs
[
'batched_background_migrations_worker'
]
||=
Settingslogic
.
new
({})
Settings
.
cron_jobs
[
'batched_background_migrations_worker'
][
'cron'
]
||=
'* * * * *'
Settings
.
cron_jobs
[
'batched_background_migrations_worker'
][
'job_class'
]
=
'Database::BatchedBackgroundMigrationWorker'
Gitlab
.
ee
do
Settings
.
cron_jobs
[
'analytics_devops_adoption_create_all_snapshots_worker'
]
||=
Settingslogic
.
new
({})
...
...
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