Allow ValidateLHStaticEntries to check all static host map entries (#141)

* Allow ValidateLHStaticEntries to check all static host map entries

* Cleaner fix for ValidateLHStaticEntries
This commit is contained in:
Chad Harp 2020-01-02 20:04:18 -06:00 committed by Wade Simmons
parent fd8ad5d0d7
commit efe741ad66
1 changed files with 1 additions and 4 deletions

View File

@ -55,10 +55,7 @@ func NewLightHouse(amLighthouse bool, myIp uint32, ips []uint32, interval int, n
func (lh *LightHouse) ValidateLHStaticEntries() error {
for lhIP, _ := range lh.lighthouses {
for ip, _ := range lh.staticList {
if lhIP == ip {
break
}
if _, ok := lh.staticList[lhIP]; !ok {
return fmt.Errorf("Lighthouse %s does not have a static_host_map entry", IntIp(lhIP))
}
}