From ff2aae98f477f3c521d0a8459d4eabc43e803f03 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Wed, 10 Jan 2018 09:53:41 -0800 Subject: [PATCH] Adds more info about how to fix the private IP error. Closes #3790 --- agent/config/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] }