pr comments

This commit is contained in:
Abhishek Kondur 2023-01-06 21:27:40 +05:30
parent 2e7f9524e3
commit 023f29ee71
2 changed files with 3 additions and 2 deletions

View file

@ -43,6 +43,7 @@ type IDandAddr struct {
// PeerMap - peer map for ids and addresses in metrics // PeerMap - peer map for ids and addresses in metrics
type PeerMap map[string]IDandAddr type PeerMap map[string]IDandAddr
// HostPeerMap - host peer map for ids and addresses
type HostPeerMap map[string]map[string]IDandAddr type HostPeerMap map[string]map[string]IDandAddr
// MetricsMap - map for holding multiple metrics in memory // MetricsMap - map for holding multiple metrics in memory

View file

@ -14,7 +14,7 @@ import (
"github.com/gravitl/netmaker/serverctl" "github.com/gravitl/netmaker/serverctl"
) )
// PublishPeerUpdate --- deterines and publishes a peer update to all the peers of a node // PublishPeerUpdate --- determines and publishes a peer update to all the hosts
func PublishPeerUpdate(network string, publishToSelf bool) error { func PublishPeerUpdate(network string, publishToSelf bool) error {
if !servercfg.IsMessageQueueBackend() { if !servercfg.IsMessageQueueBackend() {
return nil return nil
@ -48,7 +48,7 @@ func PublishProxyPeerUpdate(node *models.Node) error {
return nil return nil
} }
// PublishSinglePeerUpdate --- determines and publishes a peer update to one node // PublishSingleHostUpdate --- determines and publishes a peer update to one host
func PublishSingleHostUpdate(host *models.Host) error { func PublishSingleHostUpdate(host *models.Host) error {
peerUpdate, err := logic.GetPeerUpdateForHost(host) peerUpdate, err := logic.GetPeerUpdateForHost(host)