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
9b34dcf8
Commit
9b34dcf8
authored
Nov 06, 2020
by
Brett Walker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrite comment for better clarity
parent
a8844e38
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
app/workers/background_migration_worker.rb
app/workers/background_migration_worker.rb
+4
-2
No files found.
app/workers/background_migration_worker.rb
View file @
9b34dcf8
...
@@ -59,8 +59,10 @@ class BackgroundMigrationWorker # rubocop:disable Scalability/IdempotentWorker
...
@@ -59,8 +59,10 @@ class BackgroundMigrationWorker # rubocop:disable Scalability/IdempotentWorker
database_unhealthy_counter
.
increment
if
lease_obtained
&&
!
healthy_db
database_unhealthy_counter
.
increment
if
lease_obtained
&&
!
healthy_db
# If we've tried several times to get a lease with a healthy DB without success, just give up.
# When the DB is unhealthy or the lease can't be obtained after several tries,
# Otherwise we could end up in an infinite rescheduling loop.
# then give up on the job and log a warning. Otherwise we could end up in
# an infinite rescheduling loop. Jobs can be tracked in the database with the
# use of Gitlab::Database::BackgroundMigrationJob
if
!
perform
&&
attempts_left
<
0
if
!
perform
&&
attempts_left
<
0
msg
=
if
!
lease_obtained
msg
=
if
!
lease_obtained
'Job could not get an exclusive lease after several tries. Giving up.'
'Job could not get an exclusive lease after several tries. Giving up.'
...
...
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