diff --git a/agent/config/builder.go b/agent/config/builder.go index 691514121..c6b3e4766 100644 --- a/agent/config/builder.go +++ b/agent/config/builder.go @@ -387,7 +387,7 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { return RuntimeConfig{}, fmt.Errorf("No %s address found", addrtyp) } if len(advertiseAddrs) > 1 { - return RuntimeConfig{}, fmt.Errorf("Multiple %s addresses found. Please configure one", addrtyp) + return RuntimeConfig{}, fmt.Errorf("Multiple %s addresses found. Please configure one with 'bind' and/or 'advertise'.", addrtyp) } advertiseAddr = advertiseAddrs[0] }