@@ -841,7 +841,7 @@ func (o *deploySvcOpts) uriRecommendedActions() ([]string, error) {
841
841
}
842
842
if o .rdSvcAlias != "" {
843
843
recs = append (recs , fmt .Sprintf (`The validation process for https://%s can take more than 15 minutes.
844
- Please visit %s to check the validation status.` , o .rdSvcAlias , color .Emphasize ("https://console.aws.amazon.com/apprunner/home" )))
844
+ Please visit %s to check the validation status.` , o .rdSvcAlias , color .Emphasize ("https://console.aws.amazon.com/apprunner/home" )))
845
845
}
846
846
return recs , nil
847
847
}
@@ -856,7 +856,7 @@ func (o *deploySvcOpts) subscribeRecommendedActions() []string {
856
856
retrieveEnvVarCode := "const eventsQueueURI = process.env.COPILOT_QUEUE_URI"
857
857
actionRetrieveEnvVar := fmt .Sprintf (
858
858
`Update %s's code to leverage the injected environment variable "COPILOT_QUEUE_URI".
859
- In JavaScript you can write %s.` ,
859
+ In JavaScript you can write %s.` ,
860
860
o .name ,
861
861
color .HighlightCode (retrieveEnvVarCode ),
862
862
)
@@ -868,7 +868,7 @@ func (o *deploySvcOpts) subscribeRecommendedActions() []string {
868
868
retrieveTopicQueueEnvVarCode := fmt .Sprintf ("const {%s} = JSON.parse(process.env.COPILOT_TOPIC_QUEUE_URIS)" , topicQueueNames )
869
869
actionRetrieveTopicQueues := fmt .Sprintf (
870
870
`You can retrieve topic-specific queues by writing
871
- %s.` ,
871
+ %s.` ,
872
872
color .HighlightCode (retrieveTopicQueueEnvVarCode ),
873
873
)
874
874
recs = append (recs , actionRetrieveTopicQueues )
@@ -889,7 +889,7 @@ func (o *deploySvcOpts) publishRecommendedActions() []string {
889
889
890
890
return []string {
891
891
fmt .Sprintf (`Update %s's code to leverage the injected environment variable "COPILOT_SNS_TOPIC_ARNS".
892
- In JavaScript you can write %s.` ,
892
+ In JavaScript you can write %s.` ,
893
893
o .name ,
894
894
color .HighlightCode ("const {<topicName>} = JSON.parse(process.env.COPILOT_SNS_TOPIC_ARNS)" )),
895
895
}
0 commit comments