Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/types/clusterstate/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func ErrorClusterDeleteFailed(clusterName string, region string) error {
func ErrorUnexpectedCloudFormationStatus(clusterName string, region string, metadata interface{}) error {
return errors.WithStack(&errors.Error{
Kind: ErrUnexpectedCloudFormationStatus,
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)),
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)),
Metadata: metadata,
})
}