From 23b268f04aabbfccb328e26ce256f92b3e7376d5 Mon Sep 17 00:00:00 2001 From: Ti Chi Robot Date: Mon, 23 Sep 2024 12:14:16 +0800 Subject: [PATCH] scheduler(ticdc): modify scheduler monitoring (#11567) (#11612) close pingcap/tiflow#11562 --- cdc/scheduler/internal/v3/replication/replication_set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdc/scheduler/internal/v3/replication/replication_set.go b/cdc/scheduler/internal/v3/replication/replication_set.go index 158fe527129..af6065db161 100644 --- a/cdc/scheduler/internal/v3/replication/replication_set.go +++ b/cdc/scheduler/internal/v3/replication/replication_set.go @@ -81,7 +81,7 @@ func (r ReplicationSetState) String() string { case ReplicationSetStateRemoving: return "Removing" default: - return fmt.Sprintf("Unknown %d", r) + return "Unknown" } }