mirror of
https://github.com/status-im/consul.git
synced 2025-02-18 08:36:46 +00:00
agent: vet fixes
This commit is contained in:
parent
5d73afc13f
commit
1bbdf3b03b
@ -150,7 +150,7 @@ func TestAgent_CheckAdvertiseAddrsSettings(t *testing.T) {
|
|||||||
}
|
}
|
||||||
serfLanPort := agent.consulConfig().SerfLANConfig.MemberlistConfig.AdvertisePort
|
serfLanPort := agent.consulConfig().SerfLANConfig.MemberlistConfig.AdvertisePort
|
||||||
if serfLanPort != 1233 {
|
if serfLanPort != 1233 {
|
||||||
t.Fatalf("SerfLan is not properly set to '1233': %s", serfLanPort)
|
t.Fatalf("SerfLan is not properly set to '1233': %d", serfLanPort)
|
||||||
}
|
}
|
||||||
serfWanAddr := agent.consulConfig().SerfWANConfig.MemberlistConfig.AdvertiseAddr
|
serfWanAddr := agent.consulConfig().SerfWANConfig.MemberlistConfig.AdvertiseAddr
|
||||||
if serfWanAddr != "127.0.0.43" {
|
if serfWanAddr != "127.0.0.43" {
|
||||||
@ -158,7 +158,7 @@ func TestAgent_CheckAdvertiseAddrsSettings(t *testing.T) {
|
|||||||
}
|
}
|
||||||
serfWanPort := agent.consulConfig().SerfWANConfig.MemberlistConfig.AdvertisePort
|
serfWanPort := agent.consulConfig().SerfWANConfig.MemberlistConfig.AdvertisePort
|
||||||
if serfWanPort != 1234 {
|
if serfWanPort != 1234 {
|
||||||
t.Fatalf("SerfWan is not properly set to '1234': %s", serfWanPort)
|
t.Fatalf("SerfWan is not properly set to '1234': %d", serfWanPort)
|
||||||
}
|
}
|
||||||
rpc := agent.consulConfig().RPCAdvertise
|
rpc := agent.consulConfig().RPCAdvertise
|
||||||
if rpc != c.AdvertiseAddrs.RPC {
|
if rpc != c.AdvertiseAddrs.RPC {
|
||||||
|
@ -185,7 +185,7 @@ func TestDNS_NodeLookup(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len(in.Ns) != 1 {
|
if len(in.Ns) != 1 {
|
||||||
t.Fatalf("Bad: %#v", in, len(in.Answer))
|
t.Fatalf("Bad: %#v %#v", in, len(in.Answer))
|
||||||
}
|
}
|
||||||
|
|
||||||
soaRec, ok := in.Ns[0].(*dns.SOA)
|
soaRec, ok := in.Ns[0].(*dns.SOA)
|
||||||
@ -1835,7 +1835,7 @@ func TestDNS_NonExistingLookup(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if len(in.Ns) != 1 {
|
if len(in.Ns) != 1 {
|
||||||
t.Fatalf("Bad: %#v", in, len(in.Answer))
|
t.Fatalf("Bad: %#v %#v", in, len(in.Answer))
|
||||||
}
|
}
|
||||||
|
|
||||||
soaRec, ok := in.Ns[0].(*dns.SOA)
|
soaRec, ok := in.Ns[0].(*dns.SOA)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user