Fix grammar for "does not exist"
as opposed to "does not exists" Signed-off-by: frobnicaty <92033765+frobnicaty@users.noreply.github.com>
This commit is contained in:
parent
229bc1ee8b
commit
d78b883576
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue