Skip to content

Commit

Permalink
Peerupdate bug (#2620)
Browse files Browse the repository at this point in the history
* update static,mtu from client side host update

* update host fields if host exists already on registration

* add additional logging
  • Loading branch information
abhishek9686 committed Oct 11, 2023
1 parent f4a6f16 commit eb3ba28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions controllers/hosts.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ func pull(w http.ResponseWriter, r *http.Request) {
}
allNodes, err := logic.GetAllNodes()
if err != nil {
logger.Log(0, "could not pull peers for host", hostID)
logger.Log(0, "failed to get nodes: ", hostID)
logic.ReturnErrorResponse(w, r, logic.FormatError(err, "internal"))
return
}
hPU, err := logic.GetPeerUpdateForHost("", host, allNodes, nil, nil)
if err != nil {
logger.Log(0, "could not pull peers for host", hostID)
logger.Log(0, "could not pull peers for host", hostID, err.Error())
logic.ReturnErrorResponse(w, r, logic.FormatError(err, "internal"))
return
}
Expand Down
2 changes: 1 addition & 1 deletion logic/peers.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func GetPeerUpdateForHost(network string, host *models.Host, allNodes []models.N
peerHost, err := GetHost(peer.HostID.String())
if err != nil {
logger.Log(1, "no peer host", peer.HostID.String(), err.Error())
return models.HostPeerUpdate{}, err
continue
}
peerConfig := wgtypes.PeerConfig{
PublicKey: peerHost.PublicKey,
Expand Down

0 comments on commit eb3ba28

Please sign in to comment.