CE pipelines don't respond to sourced_pipelines

We also scope the `rescue`s to only those raised by ActiveRecord, which
would have allowed us to spot this logic error sooner.
This commit is contained in:
Robert Speicher 2019-07-22 11:42:16 -05:00
parent 3c6fee700d
commit 6331ddbe56
No known key found for this signature in database
GPG Key ID: 1D812769A7706642
1 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ class Gitlab::Seeder::Pipelines
@project.repository.commits('master', limit: 4).map do |commit|
create_pipeline!(@project, 'master', commit).tap do |pipeline|
random_pipeline.tap do |triggered_by_pipeline|
triggered_by_pipeline.sourced_pipelines.create(
triggered_by_pipeline.try(:sourced_pipelines)&.create(
source_job: triggered_by_pipeline.builds.all.sample,
source_project: triggered_by_pipeline.project,
project: pipeline.project,
@ -89,7 +89,7 @@ class Gitlab::Seeder::Pipelines
end
end
end
rescue
rescue ActiveRecord::ActiveRecordError
[]
end
@ -106,7 +106,7 @@ class Gitlab::Seeder::Pipelines
end
pipelines.flatten
rescue
rescue ActiveRecord::ActiveRecordError
[]
end