Skip to content

Commit 6a89e3c

Browse files
authored
Use number instead of name for the workflow messages (#1014)
* Use number instead of name for the workflow messages * Remove word duplication
1 parent 5d71942 commit 6a89e3c

10 files changed

+26
-16
lines changed

internal/cmd/workflow/cancel.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ marks it as cancelled, allowing you to start a new workflow if needed.`,
6767
}
6868
}
6969

70-
end := ch.Printer.PrintProgress(fmt.Sprintf("Cancelling workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
70+
end := ch.Printer.PrintProgress(fmt.Sprintf("Cancelling workflow %s in database %s…", printer.BoldBlue(printer.Number(number)), printer.BoldBlue(db)))
7171
defer end()
7272

7373
workflow, err := client.Workflows.Cancel(ctx, &ps.CancelWorkflowRequest{
@@ -88,7 +88,7 @@ marks it as cancelled, allowing you to start a new workflow if needed.`,
8888

8989
if ch.Printer.Format() == printer.Human {
9090
ch.Printer.Printf("Workflow %s in database %s has been cancelled.\n",
91-
printer.BoldBlue(workflow.Name),
91+
printer.BoldBlue(printer.Number(workflow.Number)),
9292
printer.BoldBlue(db),
9393
)
9494
return nil

internal/cmd/workflow/complete.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func CompleteCmd(ch *cmdutil.Helper) *cobra.Command {
3131
return err
3232
}
3333

34-
end := ch.Printer.PrintProgress(fmt.Sprintf("Marking workflow %s in database %s as complete…", printer.BoldBlue(number), printer.BoldBlue(db)))
34+
end := ch.Printer.PrintProgress(fmt.Sprintf("Marking workflow %s in database %s as complete…", printer.BoldBlue(printer.Number(number)), printer.BoldBlue(db)))
3535
defer end()
3636

3737
workflow, err := client.Workflows.Complete(ctx, &ps.CompleteWorkflowRequest{
@@ -52,7 +52,7 @@ func CompleteCmd(ch *cmdutil.Helper) *cobra.Command {
5252

5353
if ch.Printer.Format() == printer.Human {
5454
ch.Printer.Printf("Workflow %s in database %s has been marked as complete.\n",
55-
printer.BoldBlue(workflow.Name),
55+
printer.BoldBlue(printer.Number(workflow.Number)),
5656
printer.BoldBlue(db),
5757
)
5858
return nil

internal/cmd/workflow/create.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func CreateCmd(ch *cmdutil.Helper) *cobra.Command {
5757
}
5858

5959
if ch.Printer.Format() == printer.Human {
60-
ch.Printer.Printf("Successfully created workflow %s to copy %d tables from %s to %s.\n", printer.BoldBlue(workflow.Name), len(flags.tables), printer.Bold(flags.sourceKeyspace), printer.Bold(flags.targetKeyspace))
60+
ch.Printer.Printf("Successfully created workflow %s to copy %d tables from %s to %s.\n", printer.BoldBlue(printer.Number(workflow.Number)), len(flags.tables), printer.Bold(flags.sourceKeyspace), printer.Bold(flags.targetKeyspace))
6161
return nil
6262
}
6363

@@ -291,7 +291,12 @@ func createInteractive(ctx context.Context, ch *cmdutil.Helper, org, db, branch
291291
return err
292292
}
293293

294-
ch.Printer.Printf("Successfully created workflow %s. It will copy %s tables from %s to %s.", printer.BoldBlue(workflow.Name), printer.Bold(len(workflow.Tables)), printer.BoldBlue(workflow.SourceKeyspace.Name), printer.BoldBlue(workflow.TargetKeyspace.Name))
294+
numTables := "1 table"
295+
if len(workflow.Tables) > 1 {
296+
numTables = fmt.Sprintf("%d tables", len(workflow.Tables))
297+
}
298+
299+
ch.Printer.Printf("Successfully created workflow %s. It will copy %s from %s to %s.", printer.BoldBlue(printer.Number(workflow.Number)), printer.Bold(numTables), printer.BoldBlue(workflow.SourceKeyspace.Name), printer.BoldBlue(workflow.TargetKeyspace.Name))
295300

296301
return nil
297302
}

internal/cmd/workflow/cutover.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func CutoverCmd(ch *cmdutil.Helper) *cobra.Command {
8282
}
8383
}
8484

85-
end := ch.Printer.PrintProgress(fmt.Sprintf("Completing workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
85+
end := ch.Printer.PrintProgress(fmt.Sprintf("Completing workflow %s in database %s…", printer.BoldBlue(printer.Number(number)), printer.BoldBlue(db)))
8686
defer end()
8787

8888
workflow, err := client.Workflows.Cutover(ctx, &ps.CutoverWorkflowRequest{
@@ -103,7 +103,7 @@ func CutoverCmd(ch *cmdutil.Helper) *cobra.Command {
103103

104104
if ch.Printer.Format() == printer.Human {
105105
ch.Printer.Printf("Workflow %s successfully completed.\n",
106-
printer.BoldBlue(workflow.Name),
106+
printer.BoldBlue(printer.Number(workflow.Number)),
107107
)
108108
return nil
109109
}

internal/cmd/workflow/retry.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func RetryCmd(ch *cmdutil.Helper) *cobra.Command {
3131
return err
3232
}
3333

34-
end := ch.Printer.PrintProgress(fmt.Sprintf("Retrying workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
34+
end := ch.Printer.PrintProgress(fmt.Sprintf("Retrying workflow %s in database %s…", printer.BoldBlue(printer.Number(number)), printer.BoldBlue(db)))
3535
defer end()
3636

3737
workflow, err := client.Workflows.Retry(ctx, &ps.RetryWorkflowRequest{
@@ -52,7 +52,7 @@ func RetryCmd(ch *cmdutil.Helper) *cobra.Command {
5252

5353
if ch.Printer.Format() == printer.Human {
5454
ch.Printer.Printf("Workflow %s in database %s has been retried.\n",
55-
printer.BoldBlue(workflow.Name),
55+
printer.BoldBlue(printer.Number(workflow.Number)),
5656
printer.BoldBlue(db),
5757
)
5858
return nil

internal/cmd/workflow/reverse_cutover.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This is useful if your application has errors and you need to rollback after a c
3232
return err
3333
}
3434

35-
end := ch.Printer.PrintProgress(fmt.Sprintf("Reversing cutover for workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
35+
end := ch.Printer.PrintProgress(fmt.Sprintf("Reversing cutover for workflow %s in database %s…", printer.BoldBlue(printer.Number(number)), printer.BoldBlue(db)))
3636
defer end()
3737

3838
workflow, err := client.Workflows.ReverseCutover(ctx, &ps.ReverseCutoverWorkflowRequest{
@@ -54,7 +54,7 @@ This is useful if your application has errors and you need to rollback after a c
5454

5555
if ch.Printer.Format() == printer.Human {
5656
ch.Printer.Printf("Cutover reversed for workflow %s in database %s.\n",
57-
printer.BoldBlue(workflow.Name),
57+
printer.BoldBlue(printer.Number(workflow.Number)),
5858
printer.BoldBlue(db),
5959
)
6060
return nil

internal/cmd/workflow/reverse_traffic.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This is useful when you need to rollback a traffic switch operation.`,
5353

5454
if ch.Printer.Format() == printer.Human {
5555
ch.Printer.Printf("Successfully reversed traffic for workflow %s in database %s.\n",
56-
printer.BoldBlue(workflow.Name),
56+
printer.BoldBlue(printer.Number(workflow.Number)),
5757
printer.BoldBlue(db),
5858
)
5959
return nil

internal/cmd/workflow/switch_traffic.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ By default, this command will route all queries for primary, replica, and read-o
108108
if ch.Printer.Format() == printer.Human {
109109
if replicasOnly {
110110
ch.Printer.Printf("Successfully switched query traffic from replica and read-only tablets to target keyspace for workflow %s in database %s.\n",
111-
printer.BoldBlue(workflow.Name),
111+
printer.BoldBlue(printer.Number(workflow.Number)),
112112
printer.BoldBlue(db),
113113
)
114114
return nil
115115
}
116116
ch.Printer.Printf("Successfully switched queries from primary, replica, and read-only tablets to target keyspace for workflow %s in database %s.\n",
117-
printer.BoldBlue(workflow.Name),
117+
printer.BoldBlue(printer.Number(workflow.Number)),
118118
printer.BoldBlue(db),
119119
)
120120
return nil

internal/cmd/workflow/verify_data.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func VerifyDataCmd(ch *cmdutil.Helper) *cobra.Command {
5151

5252
if ch.Printer.Format() == printer.Human {
5353
ch.Printer.Printf("Successfully started data verification for workflow %s in database %s.\n",
54-
printer.BoldBlue(workflow.Name),
54+
printer.BoldBlue(printer.Number(workflow.Number)),
5555
printer.BoldBlue(db))
5656
return nil
5757
}

internal/printer/printer.go

+5
Original file line numberDiff line numberDiff line change
@@ -325,3 +325,8 @@ func Bold(msg interface{}) string {
325325
// the 'color' package already handles IsTTY gracefully
326326
return color.New(color.Bold).Sprint(msg)
327327
}
328+
329+
// Number returns a formatted number with the # prefix
330+
func Number(number uint64) string {
331+
return fmt.Sprintf("#%d", number)
332+
}

0 commit comments

Comments
 (0)