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
2ccbe4fd
Commit
2ccbe4fd
authored
May 28, 2018
by
Kamil Trzciński
Committed by
Dylan Griffith
May 31, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run `Ci::Runner#assign_to` in transaction
parent
bf74e69e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
app/models/ci/runner.rb
app/models/ci/runner.rb
+9
-2
No files found.
app/models/ci/runner.rb
View file @
2ccbe4fd
...
...
@@ -120,8 +120,15 @@ module Ci
raise
ArgumentError
,
'Transitioning a group runner to a project runner is not supported'
end
self
.
projects
<<
project
self
.
save
begin
transaction
do
self
.
projects
<<
project
self
.
save!
end
rescue
ActiveRecord
::
RecordInvalid
=>
e
self
.
errors
.
add
(
:assign_to
,
e
.
message
)
false
end
end
def
display_name
...
...
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