Merge "Make the JSON RPC server work with both IPv4 and IPv6"

This commit is contained in:
Zuul 2019-04-24 11:13:40 +00:00 committed by Gerrit Code Review
commit dcca08d9d4
2 changed files with 6 additions and 1 deletions

View File

@ -23,7 +23,7 @@ opts = [
help=_('Authentication strategy used by JSON RPC. Defaults to '
'the global auth_strategy setting.')),
cfg.HostAddressOpt('host_ip',
default='0.0.0.0',
default='::',
help=_('The IP address or hostname on which JSON RPC '
'will listen.')),
cfg.PortOpt('port',

View File

@ -0,0 +1,5 @@
---
fixes:
- |
The internal JSON RPC server now binds to ``::`` by default, allowing it to
work correctly with IPv6.