From 2768e063e4fe2719c50dda8f74206ed47b27b151 Mon Sep 17 00:00:00 2001 From: Hu# Date: Fri, 10 Nov 2023 17:59:14 +0800 Subject: [PATCH] mcs: fix error typo (#7354) ref tikv/pd#4399 Signed-off-by: husharp Co-authored-by: ti-chi-bot[bot] <108142056+ti-chi-bot[bot]@users.noreply.github.com> --- pkg/mcs/tso/server/install/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mcs/tso/server/install/install.go b/pkg/mcs/tso/server/install/install.go index 27db0c51d75..a821505474f 100644 --- a/pkg/mcs/tso/server/install/install.go +++ b/pkg/mcs/tso/server/install/install.go @@ -28,5 +28,5 @@ func init() { // Install registers the API group and grpc service. func Install(register *registry.ServiceRegistry) { - register.RegisterService("Scheduling", server.NewService[*server.Server]) + register.RegisterService("TSO", server.NewService[*server.Server]) }