Skip to content

Commit

Permalink
Merge pull request moby#42981 from frobnicaty/patch-1
Browse files Browse the repository at this point in the history
Fix grammar for "does not exist"
  • Loading branch information
tianon authored Dec 9, 2021
2 parents d456264 + d78b883 commit 8955d8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libnetwork/networkdb/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,10 +419,10 @@ func (nDB *NetworkDB) reapTableEntries() {

okTable, okNetwork := nDB.deleteEntry(nid, tname, key)
if !okTable {
logrus.Errorf("Table tree delete failed, entry with key:%s does not exists in the table:%s network:%s", key, tname, nid)
logrus.Errorf("Table tree delete failed, entry with key:%s does not exist in the table:%s network:%s", key, tname, nid)
}
if !okNetwork {
logrus.Errorf("Network tree delete failed, entry with key:%s does not exists in the network:%s table:%s", key, nid, tname)
logrus.Errorf("Network tree delete failed, entry with key:%s does not exist in the network:%s table:%s", key, nid, tname)
}

return false
Expand Down

0 comments on commit 8955d8d

Please sign in to comment.