Skip to content

Commit 5e47231

Browse files
Merge pull request #2412 from benjaminapetersen/bug/1490720/deployment-cancelled-in-drawer
Automatic merge from submit-queue. Fix missing RolloutCancelled event in notification drawer Fix bugzilla #1490720 ([link](https://bugzilla.redhat.com/show_bug.cgi?id=1490720)) Adds this event to the notification drawer: ![screen shot 2017-10-31 at 4 05 47 pm](https://user-images.githubusercontent.com/280512/32246689-2584867c-be56-11e7-8eed-e35cba063cfe.png)
2 parents 431a311 + e4beed3 commit 5e47231

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/scripts/constants.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,11 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
188188
// BuildConfig
189189
BuildConfigInstantiateFailed: true,
190190
// Deployment
191-
DeploymentCancelled: true,
192191
Failed: true,
193192
// DeploymentConfig
194193
DeploymentCreated: true,
195194
DeploymentCreationFailed: true,
195+
RolloutCancelled: true,
196196
// HorizontalPodAutoscaler
197197
FailedRescale: true,
198198
SuccessfulRescale: true,

dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -723,10 +723,10 @@ BuildCompleted: !0,
723723
BuildFailed: !0,
724724
BuildStarted: !0,
725725
BuildConfigInstantiateFailed: !0,
726-
DeploymentCancelled: !0,
727726
Failed: !0,
728727
DeploymentCreated: !0,
729728
DeploymentCreationFailed: !0,
729+
RolloutCancelled: !0,
730730
FailedRescale: !0,
731731
SuccessfulRescale: !0,
732732
BackOff: !0,

0 commit comments

Comments
 (0)