From 1376bb8a629306baddcb0e90c1d5a2b0f8768546 Mon Sep 17 00:00:00 2001 From: David Eliahu Date: Tue, 11 May 2021 13:32:07 -0700 Subject: [PATCH] Update unexpected cloudformation status message --- pkg/types/clusterstate/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/types/clusterstate/errors.go b/pkg/types/clusterstate/errors.go index 4ad54773d8..5a3f1e94ba 100644 --- a/pkg/types/clusterstate/errors.go +++ b/pkg/types/clusterstate/errors.go @@ -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, }) }