You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix error message for push command
* Display current step in the canary deployment
* Fix canary steps tests
* Fix continue test instance-step command
* Fix integration test for canary
---------
Signed-off-by: João Pereira <[email protected]>
Co-authored-by: João Pereira <[email protected]>
@@ -55,6 +55,7 @@ var _ = Describe("push with --strategy canary", func() {
55
55
Expect(session).To(Say("Active deployment with status PAUSED"))
56
56
Expect(session).To(Say("strategy: canary"))
57
57
Expect(session).To(Say("max-in-flight: 1"))
58
+
Expect(session).To(Say("canary-steps: 1/2"))
58
59
Expect(session).To(Say("Please run `cf continue-deployment %s` to promote the canary deployment, or `cf cancel-deployment %s` to rollback to the previous version.", appName, appName))
59
60
Expect(session).To(Exit(0))
60
61
})
@@ -86,6 +87,7 @@ var _ = Describe("push with --strategy canary", func() {
86
87
Expect(session).To(Say("Active deployment with status PAUSED"))
87
88
Expect(session).To(Say("strategy: canary"))
88
89
Expect(session).To(Say("max-in-flight: 2"))
90
+
Expect(session).To(Say("canary-steps: 1/1"))
89
91
Expect(session).To(Say("Please run `cf continue-deployment %s` to promote the canary deployment, or `cf cancel-deployment %s` to rollback to the previous version.", appName, appName))
0 commit comments