From a5051cf46c51aeafc4c9507313e0bb3fd05c6e4b Mon Sep 17 00:00:00 2001 From: Tim Vaillancourt Date: Tue, 10 Dec 2024 16:03:23 +0100 Subject: [PATCH] help typo Signed-off-by: Tim Vaillancourt --- go/vt/topo/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/topo/server.go b/go/vt/topo/server.go index 897d6b66c67..b9bf46a1c3d 100644 --- a/go/vt/topo/server.go +++ b/go/vt/topo/server.go @@ -191,7 +191,7 @@ func registerTopoFlags(fs *pflag.FlagSet) { fs.StringVar(&topoImplementation, "topo_implementation", topoImplementation, "the topology implementation to use") fs.StringVar(&topoGlobalServerAddress, "topo_global_server_address", topoGlobalServerAddress, "the address of the global topology server") fs.StringVar(&topoGlobalRoot, "topo_global_root", topoGlobalRoot, "the path of the global topology data in the global topology server") - fs.Int64Var(&DefaultReadConcurrency, "topo_read_concurrency", DefaultReadConcurrency, "Maximum concurrency of topo reads per global or local cell") + fs.Int64Var(&DefaultReadConcurrency, "topo_read_concurrency", DefaultReadConcurrency, "Maximum concurrency of topo reads per global or local cell.") } // RegisterFactory registers a Factory for an implementation for a Server.