Skip to content

Commit

Permalink
fix: bind redis proxy to all interfaces (#2559)
Browse files Browse the repository at this point in the history
Sometimes docker in CI resolves localhost to an ip4 address, sometimes
an ip6 address so just bind to all interfaces.
  • Loading branch information
achingbrain authored May 28, 2024
1 parent f9df632 commit e69a2f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interop/.aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default {
}

const proxyServer = http.createServer(requestListener)
await new Promise(resolve => { proxyServer.listen(0, 'localhost', () => { resolve() }) })
await new Promise(resolve => { proxyServer.listen(0, () => { resolve() }) })

return {
redisClient,
Expand Down

0 comments on commit e69a2f1

Please sign in to comment.