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
cmd.Flags().StringVar(&nodeExporterVer, "node-exporter-version", "", "Fix the version of node-exporter and no longer follows the cluster version.")
90
93
cmd.Flags().StringVar(&blackboxExporterVer, "blackbox-exporter-version", "", "Fix the version of blackbox-exporter and no longer follows the cluster version.")
91
94
cmd.Flags().StringVar(&tiproxyVer, "tiproxy-version", "", "Fix the version of tiproxy and no longer follows the cluster version.")
95
+
cmd.Flags().DurationVar(&restartTimeout, "restart-timeout", time.Second*0, "Timeout for after upgrade prompt")
This operation will upgrade %s %s cluster %s to %s:%s`,
124
+
This operation will upgrade %s %s cluster %s (with a concurrency of %d) to %s:%s`,
125
125
color.YellowString("Before the upgrade, it is recommended to read the upgrade guide at https://docs.pingcap.com/tidb/stable/upgrade-tidb-using-tiup and finish the preparation steps."),
126
126
m.sysName,
127
127
color.HiYellowString(base.Version),
128
128
color.HiYellowString(name),
129
+
opt.Concurrency,
129
130
color.HiYellowString(clusterVersion),
130
131
compVersionMsg)
131
132
if!skipConfirm {
@@ -317,7 +318,23 @@ This operation will upgrade %s %s cluster %s to %s:%s`,
0 commit comments