BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
01c55ffc
Commit
01c55ffc
authored
Jul 14, 2017
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catch exceptions when stealing background migrations
parent
39b96f02
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
5 deletions
+35
-5
background_migration.rb
lib/gitlab/background_migration.rb
+5
-0
background_migration_spec.rb
spec/lib/gitlab/background_migration_spec.rb
+30
-5
No files found.
lib/gitlab/background_migration.rb
View file @
01c55ffc
...
...
@@ -19,7 +19,12 @@ module Gitlab
next
unless
job
.
queue
==
self
.
queue
next
unless
migration_class
==
steal_class
begin
perform
(
migration_class
,
migration_args
)
if
job
.
delete
rescue
=>
e
Logger
.
new
(
$stdout
).
warn
(
e
.
message
)
next
end
end
end
end
...
...
spec/lib/gitlab/background_migration_spec.rb
View file @
01c55ffc
...
...
@@ -10,18 +10,17 @@ describe Gitlab::BackgroundMigration do
describe
'.steal'
do
context
'when there are enqueued jobs present'
do
let
(
:job
)
{
double
(
:job
,
args:
[
'Foo'
,
[
10
,
20
]])
}
let
(
:queue
)
{
[
job
]
}
let
(
:queue
)
do
[
double
(
args:
[
'Foo'
,
[
10
,
20
]],
queue:
described_class
.
queue
)]
end
before
do
allow
(
Sidekiq
::
Queue
).
to
receive
(
:new
)
.
with
(
described_class
.
queue
)
.
and_return
(
queue
)
allow
(
job
).
to
receive
(
:queue
)
.
and_return
(
described_class
.
queue
)
end
context
'when queue contains unprocessed jobs'
do
it
'steals jobs from a queue'
do
expect
(
queue
[
0
]).
to
receive
(
:delete
).
and_return
(
true
)
...
...
@@ -47,6 +46,32 @@ describe Gitlab::BackgroundMigration do
end
end
context
'when one of the jobs raises an error'
do
let
(
:migration
)
{
spy
(
:migration
)
}
let
(
:queue
)
do
[
double
(
args:
[
'Foo'
,
[
10
,
20
]],
queue:
described_class
.
queue
),
double
(
args:
[
'Foo'
,
[
20
,
30
]],
queue:
described_class
.
queue
)]
end
before
do
stub_const
(
"
#{
described_class
}
::Foo"
,
migration
)
allow
(
migration
).
to
receive
(
:perform
).
with
(
10
,
20
)
.
and_raise
(
StandardError
,
'Migration error'
)
allow
(
queue
[
0
]).
to
receive
(
:delete
).
and_return
(
true
)
allow
(
queue
[
1
]).
to
receive
(
:delete
).
and_return
(
true
)
end
it
'recovers from an exceptions and continues'
do
expect
(
migration
).
to
receive
(
:perform
).
twice
expect
{
described_class
.
steal
(
'Foo'
)
}
.
to
output
(
/Migration error/
).
to_stdout
end
end
end
context
'when there are scheduled jobs present'
,
:sidekiq
,
:redis
do
it
'steals all jobs from the scheduled sets'
do
Sidekiq
::
Testing
.
disable!
do
...
...
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