Merge "[doc] tell to prefix ipv6 hosts with inet6"

This commit is contained in:
Zuul 2020-04-29 11:22:56 +00:00 committed by Gerrit Code Review
commit bc26de5e53

View File

@ -74,9 +74,18 @@ FILE_OPTIONS = {
'keys/values. Typically this should be left set '
'to false.'),
cfg.ListOpt('memcache_servers', default=['localhost:11211'],
help='Memcache servers in the format of "host:port".'
' (dogpile.cache.memcached and oslo_cache.memcache_pool'
' backends only).'),
help='Memcache servers in the format of "host:port". '
'(dogpile.cache.memcached and '
'oslo_cache.memcache_pool backends only). '
'If a given host refer to an IPv6 or a given domain '
'refer to IPv6 then you should prefix the given '
'address with the address family (``inet6``) '
'(e.g ``inet6[::1]:11211``, '
'``inet6:[fd12:3456:789a:1::1]:11211``, '
'``inet6:[controller-0.internalapi]:11211``). '
'If the address family is not given then default '
'address family used will be ``inet`` which '
'correspond to IPv4'),
cfg.IntOpt('memcache_dead_retry',
default=5 * 60,
help='Number of seconds memcached server is considered dead'