0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-05-20 06:13:48 +02:00

The Pinecone gobind demo must listen on localhost for baseURL to be correct

This commit is contained in:
Neil Alexander 2022-05-13 12:06:47 +01:00
parent 1698c39579
commit b40b548432
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -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)
}