Peers is always returned sorted by Node.ID.

(https://github.com/awsong/headscale)
This commit is contained in:
Juan Font Alonso 2021-02-22 00:53:37 +01:00
parent 563f3c4017
commit a20fffc3e9

View File

@ -4,6 +4,7 @@ import (
"encoding/json"
"fmt"
"log"
"sort"
"time"
"github.com/jinzhu/gorm/dialects/postgres"
@ -128,5 +129,6 @@ func (h *Headscale) getPeers(m Machine) (*[]*tailcfg.Node, error) {
}
peers = append(peers, peer)
}
sort.Slice(peers, func(i, j int) bool { return peers[i].ID < peers[j].ID })
return &peers, nil
}