summaryrefslogtreecommitdiff
path: root/app/workers/process_pipeline_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/process_pipeline_worker.rb')
-rw-r--r--app/workers/process_pipeline_worker.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/workers/process_pipeline_worker.rb b/app/workers/process_pipeline_worker.rb
index 189cfa207ff..26ea5f1c24d 100644
--- a/app/workers/process_pipeline_worker.rb
+++ b/app/workers/process_pipeline_worker.rb
@@ -4,8 +4,7 @@ class ProcessPipelineWorker
sidekiq_options queue: :default
def perform(pipeline_id)
- Ci::Pipeline.find_by(id: pipeline_id).try do |pipeline|
- pipeline.process!
- end
+ Ci::Pipeline.find_by(id: pipeline_id)
+ .try(:process!)
end
end