Skip to content

Commit

Permalink
Fix a delegate issue in workflow run processing
Browse files Browse the repository at this point in the history
  • Loading branch information
nid90 committed Nov 25, 2024
1 parent c0193f2 commit 22a3f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/libs/workflow_processors/workflow_run_v2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def re_enqueue
end

attr_reader :workflow_run
delegate :in_progress?, :successful?, :failed?, :halted?, :artifacts_url, :started_at, :finished_at, to: :runner
delegate :in_progress?, :successful?, :failed?, :error?, :halted?, :artifacts_url, :started_at, :finished_at, to: :runner
delegate :github_integration?, :bitrise_integration?, :bitbucket_integration?, to: :integration
delegate :build_artifact_name_pattern, to: :workflow_run

Expand Down

0 comments on commit 22a3f74

Please sign in to comment.