From 19ee565b5acda87c1cec211138a854ce05fa8f35 Mon Sep 17 00:00:00 2001 From: Venkatraju V Date: Tue, 27 Aug 2024 16:27:45 -0700 Subject: [PATCH] typo in flag name --- go/vt/vtgate/tabletgateway.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/vtgate/tabletgateway.go b/go/vt/vtgate/tabletgateway.go index 4bcd6565205..4e111c4c56a 100644 --- a/go/vt/vtgate/tabletgateway.go +++ b/go/vt/vtgate/tabletgateway.go @@ -164,7 +164,7 @@ func (gw *TabletGateway) setupBuffering(ctx context.Context) { func (gw *TabletGateway) setupBalancer(ctx context.Context) { if len(balancerVtgateCells) == 0 { - log.Exitf("balancer_vtgate_cells is required for balanced mode") + log.Exitf("balancer-vtgate-cells is required for balanced mode") } gw.balancer = balancer.NewTabletBalancer(gw.localCell, balancerVtgateCells) }