Skip to content

Commit

Permalink
Merge pull request #53 from spinnaker/fix-canceled-check
Browse files Browse the repository at this point in the history
change in orca means we cannot rely anymore on the canceled flag
  • Loading branch information
tomaslin committed Dec 8, 2015
2 parents 0ddb8c5 + 74c6862 commit f433e6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ abstract class AbstractEventNotificationAgent implements EchoEventListener {
return
}

if (config.type == 'pipeline' && event.content.execution?.canceled == true) {
if (config.type == 'pipeline' && event.content.execution?.status == 'CANCELED') {
return
}

Expand Down

0 comments on commit f433e6c

Please sign in to comment.