From 159790507a9f0a0cce3e959702a4ffb1892f39de Mon Sep 17 00:00:00 2001 From: Aadi Sanghani Date: Thu, 10 Oct 2024 14:13:26 -0400 Subject: [PATCH] PR Feedback --- go/vt/topo/replication.go | 2 +- go/vt/topo/wildcards.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go/vt/topo/replication.go b/go/vt/topo/replication.go index df5f328e764..805a9c1248c 100644 --- a/go/vt/topo/replication.go +++ b/go/vt/topo/replication.go @@ -190,7 +190,7 @@ func (ts *Server) UpdateShardReplicationFields(ctx context.Context, cell, keyspa return vterrors.Wrap(err, "bad ShardReplication data") } default: - log.Warningf("GetShardReplication failed for cell %s, keyspace %s, shard %s: %v", cell, keyspace, shard, err) + log.Warningf("UpdateShardReplicationFields failed for cell %s, keyspace %s, shard %s: %v", cell, keyspace, shard, err) return err } diff --git a/go/vt/topo/wildcards.go b/go/vt/topo/wildcards.go index aad4026e79e..36407a0ddf2 100644 --- a/go/vt/topo/wildcards.go +++ b/go/vt/topo/wildcards.go @@ -288,6 +288,6 @@ func (ts *Server) resolveRecursive(ctx context.Context, cell string, parts []str // The path doesn't exist, don't return anything. return nil, nil } - log.Warningf("Get failed for cell %s, filePath %s: %v", cell, p, err) + log.Warningf("ResolveRecursive failed for cell %s, filePath %s: %v", cell, p, err) return nil, err }