mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-05 16:57:51 +08:00
update for multiple networks
This commit is contained in:
@@ -261,17 +261,34 @@ func UpdatePeers(client mqtt.Client, msg mqtt.Message) {
|
|||||||
|
|
||||||
// MonitorKeepalive - checks time last server keepalive received. If more than 3+ minutes, notify and resubscribe
|
// MonitorKeepalive - checks time last server keepalive received. If more than 3+ minutes, notify and resubscribe
|
||||||
func MonitorKeepalive(ctx context.Context, client mqtt.Client, cfg *config.ClientConfig) {
|
func MonitorKeepalive(ctx context.Context, client mqtt.Client, cfg *config.ClientConfig) {
|
||||||
|
var id string
|
||||||
lastUpdate := time.Now()
|
lastUpdate := time.Now()
|
||||||
|
for _, servAddr := range cfg.NetworkSettings.DefaultServerAddrs {
|
||||||
|
if servAddr.IsLeader {
|
||||||
|
id = servAddr.ID
|
||||||
|
}
|
||||||
|
}
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
return
|
return
|
||||||
case <-time.After(time.Second * 150):
|
case <-time.After(time.Second * 150):
|
||||||
if time.Since(lastUpdate) < time.Second*200 { // more than 3+ minutes
|
if time.Since(lastUpdate) > time.Second*200 { // more than 3+ minutes
|
||||||
Resubscribe(client, cfg)
|
Resubscribe(client, cfg)
|
||||||
}
|
}
|
||||||
case <-keepalive:
|
case serverID := <-keepalive:
|
||||||
lastUpdate = time.Now()
|
if serverID != id {
|
||||||
|
// not my server, put back
|
||||||
|
if cfg.DebugOn {
|
||||||
|
ncutils.Log("Monitor keepalive received wrong message on channel, putting back")
|
||||||
|
}
|
||||||
|
keepalive <- serverID
|
||||||
|
} else {
|
||||||
|
lastUpdate = time.Now()
|
||||||
|
if cfg.DebugOn {
|
||||||
|
ncutils.Log("updating checking time for" + cfg.Network)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user