Skip to content

Commit 44a62d3

Browse files
authored
Update unexpected cloudformation status message (#2167)
1 parent 3d17e8b commit 44a62d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/types/clusterstate/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func ErrorClusterDeleteFailed(clusterName string, region string) error {
101101
func ErrorUnexpectedCloudFormationStatus(clusterName string, region string, metadata interface{}) error {
102102
return errors.WithStack(&errors.Error{
103103
Kind: ErrUnexpectedCloudFormationStatus,
104-
Message: fmt.Sprintf("cluster named \"%s\" in %s is in an unexpected state; please run `cortex cluster down` to delete the cluster, or if that fails, delete the CloudFormation stacks directly from your AWS console: %s", clusterName, region, CloudFormationURL(clusterName, region)),
104+
Message: fmt.Sprintf("cluster named \"%s\" in %s is in an unexpected state; if your CloudFormation stacks are updating, please wait for them to complete. Otherwise, run `cortex cluster down` to delete the cluster, or if that fails, delete the CloudFormation stacks directly from your AWS console: %s", clusterName, region, CloudFormationURL(clusterName, region)),
105105
Metadata: metadata,
106106
})
107107
}

0 commit comments

Comments
 (0)