Skip to content

Commit

Permalink
Correct log message
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Lord <mattalord@gmail.com>
  • Loading branch information
mattlord committed Jun 8, 2024
1 parent b308ed7 commit 93613ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/topo/shard.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ func (si *ShardInfo) updatePrimaryTabletControl(tc *topodatapb.Shard_TabletContr
if len(newTables) != len(tables) {
// Some of the tables already existed in the DeniedTables list so we don't
// need to add them.
log.Warningf("%s:%s", dlTablesAlreadyPresent, strings.Join(newTables, ","))
log.Warningf("%s:%s", dlTablesAlreadyPresent, strings.Join(tables, ","))
// We do need to merge the lists, however.
tables = append(tables, newTables...)
tc.DeniedTables = append(tc.DeniedTables, tables...)
Expand Down

0 comments on commit 93613ac

Please sign in to comment.