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
confirmationMessage:=fmt.Sprintf("Are you sure you want to cutover? This will delete the moved tables from %s and replication between %s and %s will end.", workflow.SourceKeyspace.Name, workflow.SourceKeyspace.Name, workflow.TargetKeyspace.Name)
65
+
prompt:=&survey.Confirm{
66
+
Message: confirmationMessage,
67
+
Default: false,
68
+
}
69
+
70
+
varconfirmbool
71
+
err=survey.AskOne(prompt, &confirm)
72
+
iferr!=nil {
73
+
iferr==terminal.InterruptErr {
74
+
os.Exit(0)
75
+
} else {
76
+
returnerr
77
+
}
78
+
}
79
+
80
+
if!confirm {
81
+
returnerrors.New("cutover not confirmed, skipping cutover")
82
+
}
83
+
}
84
+
34
85
end:=ch.Printer.PrintProgress(fmt.Sprintf("Completing workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
@@ -41,22 +42,58 @@ By default, this command will route all queries for primary, replica, and read-o
41
42
varworkflow*ps.Workflow
42
43
varendfunc()
43
44
44
-
ifflags.replicasOnly {
45
-
end=ch.Printer.PrintProgress(fmt.Sprintf("Switching query traffic from replica and read-only tablets to the target keyspace for workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
45
+
if!force {
46
+
ifch.Printer.Format() !=printer.Human {
47
+
returnfmt.Errorf("cannot switch query traffic with the output format %q (run with -force to override)", ch.Printer.Format())
48
+
}
49
+
50
+
if!printer.IsTTY {
51
+
returnfmt.Errorf("cannot confirm switching query traffic (run with -force to override)")
52
+
}
53
+
54
+
confirmationMessage:="Are you sure you want to enable primary mode for this database?"
55
+
ifreplicasOnly {
56
+
confirmationMessage="Are you sure you want to enable replica mode for this database?"
57
+
}
58
+
59
+
prompt:=&survey.Confirm{
60
+
Message: confirmationMessage,
61
+
Default: false,
62
+
}
63
+
64
+
varconfirmbool
65
+
err:=survey.AskOne(prompt, &confirm)
66
+
iferr!=nil {
67
+
iferr==terminal.InterruptErr {
68
+
os.Exit(0)
69
+
} else {
70
+
returnerr
71
+
}
72
+
}
73
+
74
+
if!confirm {
75
+
returnerrors.New("switch traffic not confirmed, skipping switch traffic")
76
+
}
77
+
}
78
+
79
+
ifreplicasOnly {
80
+
end=ch.Printer.PrintProgress(fmt.Sprintf("Switching query traffic from replica and read-only tablets to the target keyspace for workflow %s in database %s...", printer.BoldBlue(number), printer.BoldBlue(db)))
end=ch.Printer.PrintProgress(fmt.Sprintf("Switching query traffic from primary, replica, and read-only tablets to the target keyspace for workflow %s in database %s…", printer.BoldBlue(number), printer.BoldBlue(db)))
87
+
end=ch.Printer.PrintProgress(fmt.Sprintf("Switching query traffic from primary, replica, and read-only tablets to the target keyspace for workflow %s in database %s...", printer.BoldBlue(number), printer.BoldBlue(db)))
0 commit comments