Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-06-02 05:55:42 +0300
committerShinya Maeda <shinya@gitlab.com>2018-06-02 05:55:42 +0300
commite8ecae7e0be12e6a1fe0e999d724ab5db9bb8b69 (patch)
tree9640410a1dd2805b25efe10735c577d5048684ab /lib/gitlab/ci/pipeline/chain
parentb02b2602c1bcfd60b760fbfd1aca936475d78474 (diff)
Reveert build_relations and simply add a line for creating iid
Diffstat (limited to 'lib/gitlab/ci/pipeline/chain')
-rw-r--r--lib/gitlab/ci/pipeline/chain/populate.rb20
1 files changed, 7 insertions, 13 deletions
diff --git a/lib/gitlab/ci/pipeline/chain/populate.rb b/lib/gitlab/ci/pipeline/chain/populate.rb
index 7a2a1c6a80b..f34c11ca3c2 100644
--- a/lib/gitlab/ci/pipeline/chain/populate.rb
+++ b/lib/gitlab/ci/pipeline/chain/populate.rb
@@ -8,7 +8,13 @@ module Gitlab
PopulateError = Class.new(StandardError)
def perform!
- build_relations
+ # Allocate next IID. This operation must be outside of transactions of pipeline creations.
+ pipeline.ensure_project_iid!
+
+ ##
+ # Populate pipeline with block argument of CreatePipelineService#execute.
+ #
+ @command.seeds_block&.call(pipeline)
##
# Populate pipeline with all stages, and stages with builds.
@@ -31,18 +37,6 @@ module Gitlab
def break?
pipeline.errors.any?
end
-
- private
-
- def build_relations
- ##
- # Populate pipeline with block argument of CreatePipelineService#execute.
- #
- @command.seeds_block&.call(pipeline)
-
- # Allocate next IID. This operation must be outside of transactions of pipeline creations.
- pipeline.ensure_project_iid!
- end
end
end
end