Skip to content

Commit

Permalink
ms: change the default name of the microservice to lowercase (tikv#8551)
Browse files Browse the repository at this point in the history
close tikv#8550

ms: change the default name of the microservice to lowercase

Signed-off-by: husharp <[email protected]>
  • Loading branch information
HuSharp committed Aug 21, 2024
1 parent 6c30bbf commit cbb5a5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/mcs/resourcemanager/server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
)

const (
defaultName = "Resource Manager"
defaultName = "resource manager"
defaultBackendEndpoints = "http://127.0.0.1:2379"
defaultListenAddr = "http://127.0.0.1:3379"

Expand Down
2 changes: 1 addition & 1 deletion pkg/mcs/scheduling/server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import (
)

const (
defaultName = "Scheduling"
defaultName = "scheduling"
defaultBackendEndpoints = "http://127.0.0.1:2379"
defaultListenAddr = "http://127.0.0.1:3379"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/mcs/tso/server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (
const (
defaultMaxResetTSGap = 24 * time.Hour

defaultName = "TSO"
defaultName = "tso"
defaultBackendEndpoints = "http://127.0.0.1:2379"
defaultListenAddr = "http://127.0.0.1:3379"

Expand Down

0 comments on commit cbb5a5b

Please sign in to comment.