We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8219209 commit be1ab17Copy full SHA for be1ab17
1 file changed
go/logic/migrator.go
@@ -761,6 +761,12 @@ func (this *Migrator) printMigrationStatusHint(writers ...io.Writer) {
761
throttleQuery,
762
))
763
}
764
+ if throttleControlReplicaKeys := this.migrationContext.GetThrottleControlReplicaKeys(); throttleControlReplicaKeys.Len() > 0 {
765
+ fmt.Fprintln(w, fmt.Sprintf("# throttle-control-replicas count: %+v",
766
+ throttleControlReplicaKeys.Len(),
767
+ ))
768
+ }
769
+
770
if this.migrationContext.PostponeCutOverFlagFile != "" {
771
setIndicator := ""
772
if base.FileExists(this.migrationContext.PostponeCutOverFlagFile) {
0 commit comments