You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(cli): update command logging verbiage to include jobs (#1552)
Include `jobs` in command logging wording in `env_init` and `app_init`.
Addresses #1542
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Copy file name to clipboardExpand all lines: internal/pkg/cli/app_init.go
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,14 +22,14 @@ import (
22
22
)
23
23
24
24
const (
25
-
fmtAppInitStart="Creating the infrastructure to manage services under application %s."
26
-
fmtAppInitComplete="Created the infrastructure to manage services under application %s.\n"
27
-
fmtAppInitFailed="Failed to create the infrastructure to manage services under application %s.\n"
25
+
fmtAppInitStart="Creating the infrastructure to manage services and jobs under application %s."
26
+
fmtAppInitComplete="Created the infrastructure to manage services and jobs under application %s.\n"
27
+
fmtAppInitFailed="Failed to create the infrastructure to manage services and jobs under application %s.\n"
28
28
29
29
fmtAppInitNamePrompt="What would you like to %s your application?"
30
30
fmtAppInitNewNamePrompt=`Ok, let's create a new application then.
31
31
What would you like to %s your application?`
32
-
appInitNameHelpPrompt="Services in the same application share the same VPC and ECS Cluster and are discoverable via service discovery."
32
+
appInitNameHelpPrompt="Services and jobs in the same application share the same VPC and ECS Cluster and services are discoverable via service discovery."
0 commit comments