We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a207c commit 55a719fCopy full SHA for 55a719f
pkg/transport/http.go
@@ -19,7 +19,8 @@ const (
19
// LocalhostName is the standard hostname for localhost
20
LocalhostName = "localhost"
21
// LocalhostIPv4 is the standard IPv4 address for localhost
22
- LocalhostIPv4 = "127.0.0.1"
+ // We use 0.0.0.0 instead of 127.0.0.1 because 127.0.0.1 is not accessible from the host
23
+ LocalhostIPv4 = "0.0.0.0"
24
)
25
26
// HTTPTransport implements the Transport interface using Server-Sent/Streamable Events.
0 commit comments