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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
fd4efde5
Commit
fd4efde5
authored
Aug 29, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Block concurrent pipeline processings
parent
ee61c403
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
CHANGELOG
CHANGELOG
+1
-3
app/services/ci/process_pipeline_service.rb
app/services/ci/process_pipeline_service.rb
+8
-6
No files found.
CHANGELOG
View file @
fd4efde5
...
@@ -54,13 +54,11 @@ v 8.12.0 (unreleased)
...
@@ -54,13 +54,11 @@ v 8.12.0 (unreleased)
v 8.11.4 (unreleased)
v 8.11.4 (unreleased)
- Fix broken gitlab:backup:restore because of bad permissions on repo storage !6098 (Dirk Hörner)
- Fix broken gitlab:backup:restore because of bad permissions on repo storage !6098 (Dirk Hörner)
- Creating an issue through our API now emails label subscribers !5720
- Creating an issue through our API now emails label subscribers !5720
- Block concurrent updates for Pipeline
- Fix resolving conflicts on forks
- Fix resolving conflicts on forks
- Fix diff commenting on merge requests created prior to 8.10
- Fix diff commenting on merge requests created prior to 8.10
v 8.11.4 (unreleased)
- Fix issue boards leak private label names and descriptions
- Fix issue boards leak private label names and descriptions
v 8.11.3 (unreleased)
v 8.11.3
v 8.11.3
- Do not enforce using hash with hidden key in CI configuration. !6079
- Do not enforce using hash with hidden key in CI configuration. !6079
- Allow system info page to handle case where info is unavailable
- Allow system info page to handle case where info is unavailable
...
...
app/services/ci/process_pipeline_service.rb
View file @
fd4efde5
...
@@ -10,13 +10,15 @@ module Ci
...
@@ -10,13 +10,15 @@ module Ci
create_builds!
create_builds!
end
end
new_builds
=
@pipeline
.
with_lock
do
stage_indexes_of_created_builds
.
map
do
|
index
|
new_builds
=
process_stage
(
index
)
stage_indexes_of_created_builds
.
map
do
|
index
|
end
process_stage
(
index
)
end
# Return a flag if a when builds got enqueued
# Return a flag if a when builds got enqueued
new_builds
.
flatten
.
any?
new_builds
.
flatten
.
any?
end
end
end
private
private
...
...
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