Merge pull request #42981 from frobnicaty/patch-1

Fix grammar for "does not exist"
This commit is contained in:
Tianon Gravi 2021-12-09 13:36:53 -08:00 committed by GitHub
commit 8955d8da89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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