mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-27 12:05:26 +00:00
Add error if peer api is empty
This commit is contained in:
parent
1bddf1147b
commit
7793012409
@ -7,6 +7,7 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
@ -692,6 +693,9 @@ func getAPIURLs(tailscales map[string]dockertest.Resource) (map[netaddr.IP]strin
|
|||||||
n := ft.Node
|
n := ft.Node
|
||||||
for _, a := range n.Addresses { // just add all the addresses
|
for _, a := range n.Addresses { // just add all the addresses
|
||||||
if _, ok := fts[a.IP()]; !ok {
|
if _, ok := fts[a.IP()]; !ok {
|
||||||
|
if ft.PeerAPIURL == "" {
|
||||||
|
return nil, errors.New("api url is empty")
|
||||||
|
}
|
||||||
fts[a.IP()] = ft.PeerAPIURL
|
fts[a.IP()] = ft.PeerAPIURL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user