summaryrefslogtreecommitdiffstats
path: root/utils/httpclient.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/httpclient.go')
-rw-r--r--utils/httpclient.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/httpclient.go b/utils/httpclient.go
index a21be7aa8..cb68462e3 100644
--- a/utils/httpclient.go
+++ b/utils/httpclient.go
@@ -52,7 +52,7 @@ func init() {
type DialContextFunction func(ctx context.Context, network, addr string) (net.Conn, error)
-var AddressForbidden error = errors.New("address forbidden")
+var AddressForbidden error = errors.New("address forbidden, you may need to set AllowedUntrustedInternalConnections to allow an integration access to your internal network")
func dialContextFilter(dial DialContextFunction, allowHost func(host string) bool, allowIP func(ip net.IP) bool) DialContextFunction {
return func(ctx context.Context, network, addr string) (net.Conn, error) {