From 8f66a9f73c4376fbe98315fee774423868dfb347 Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Thu, 2 Jan 2025 19:22:27 -0500 Subject: [PATCH] Fix ERS test Signed-off-by: Matt Lord --- go/test/endtoend/reparent/utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/test/endtoend/reparent/utils/utils.go b/go/test/endtoend/reparent/utils/utils.go index acf7f6fe7d7..e84248df9f0 100644 --- a/go/test/endtoend/reparent/utils/utils.go +++ b/go/test/endtoend/reparent/utils/utils.go @@ -408,7 +408,7 @@ func ErsIgnoreTablet(clusterInstance *cluster.LocalProcessCluster, tab *cluster. // ErsWithVtctldClient runs ERS via vtctldclient binary func ErsWithVtctldClient(clusterInstance *cluster.LocalProcessCluster) (string, error) { - args := []string{"EmergencyReparentShard", "--keyspace-shard", fmt.Sprintf("%s/%s", KeyspaceName, ShardName)} + args := []string{"EmergencyReparentShard", fmt.Sprintf("%s/%s", KeyspaceName, ShardName)} return clusterInstance.VtctldClientProcess.ExecuteCommandWithOutput(args...) }