-
Notifications
You must be signed in to change notification settings - Fork 181
Add custom sync rollback other than lambda #4285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: Khanh Tran <[email protected]>
@@ -78,6 +78,7 @@ func buildProgressivePipeline(pp *config.DeploymentPipeline, autoRollback bool, | |||
out = make([]*model.PipelineStage, 0, len(pp.Stages)) | |||
) | |||
|
|||
shouldRollbackCustomSync := false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldRollbackCustomSync := false | |
var shouldRollbackCustomSync bool |
@@ -31,6 +31,7 @@ func buildQuickSyncPipeline(autoRollback bool, now time.Time) []*model.PipelineS | |||
out = make([]*model.PipelineStage, 0, len(stages)) | |||
) | |||
|
|||
shouldRollbackCustomSync := false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here.
@@ -31,6 +31,7 @@ func buildQuickSyncPipeline(autoRollback bool, now time.Time) []*model.PipelineS | |||
out = make([]*model.PipelineStage, 0, len(stages)) | |||
) | |||
|
|||
shouldRollbackCustomSync := false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here.
@@ -78,6 +96,7 @@ func buildProgressivePipeline(pp *config.DeploymentPipeline, autoRollback bool, | |||
out = make([]*model.PipelineStage, 0, len(pp.Stages)) | |||
) | |||
|
|||
shouldRollbackCustomSync := false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here.
@@ -72,6 +72,7 @@ func buildProgressivePipeline(pp *config.DeploymentPipeline, autoRollback bool, | |||
out = make([]*model.PipelineStage, 0, len(pp.Stages)) | |||
) | |||
|
|||
shouldRollbackCustomSync := false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here.
This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
This PR was closed because it has been stalled for 7 days with no activity. Feel free to reopen if still applicable. |
What this PR does / why we need it:
support custom sync rollback other than lambda
Which issue(s) this PR fixes:
Fixes #1089
Does this PR introduce a user-facing change?: