Minor fixups to daemon process and reloading the database on configuring a new node

This commit is contained in:
Gregory Kurtzer
2021-02-23 19:52:39 -08:00
parent 93a2eeaf2c
commit 33e68eaeac
3 changed files with 13 additions and 3 deletions

View File

@@ -53,7 +53,6 @@ func GetNode(val string) (node.NodeInfo, error) {
defer db.lock.RUnlock()
if _, ok := db.NodeInfo[val]; ok {
wwlog.Printf(wwlog.DEBUG, "Found node:\n%+v\n", db.NodeInfo[val])
return db.NodeInfo[val], nil
}