diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-05-13 12:06:47 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-05-13 12:06:47 +0100 |
commit | b40b548432b465e37c6045b6735f9eaf426902f0 (patch) | |
tree | 5497e67385cd97b06079a7a40d7e6c662d42da2b | |
parent | 1698c395794ab853bf377b293cc0e0cc074cfe00 (diff) |
The Pinecone `gobind` demo must listen on `localhost` for `baseURL` to be correct
-rw-r--r-- | build/gobind-pinecone/monolith.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/gobind-pinecone/monolith.go b/build/gobind-pinecone/monolith.go index 310ac7dd..664ca85d 100644 --- a/build/gobind-pinecone/monolith.go +++ b/build/gobind-pinecone/monolith.go @@ -225,7 +225,7 @@ func (m *DendriteMonolith) Start() { pk = sk.Public().(ed25519.PublicKey) } - m.listener, err = net.Listen("tcp", ":65432") + m.listener, err = net.Listen("tcp", "localhost:65432") if err != nil { panic(err) } |