Remove override for 'localhost' allowing Hub to start server on IPv6.

This commit is contained in:
Jonathan Moody 2022-12-29 13:16:47 -06:00
parent f370e263b5
commit 252a1aa165

View file

@ -117,10 +117,6 @@ class Env:
result = [part.strip() for part in host.split(',')]
if len(result) == 1:
result = result[0]
if result == 'localhost':
# 'localhost' resolves to ::1 (ipv6) on many systems, which fails on default setup of
# docker, using 127.0.0.1 instead forces ipv4
result = '127.0.0.1'
return result
def sane_max_sessions(self):