Merge "zeromq: Deprecates host, port options"
This commit is contained in:
commit
8b550c76e5
@ -29,16 +29,24 @@ LOG = logging.getLogger(__name__)
|
||||
matchmaker_redis_opts = [
|
||||
cfg.StrOpt('host',
|
||||
default='127.0.0.1',
|
||||
deprecated_for_removal=True,
|
||||
deprecated_reason="Replaced by [DEFAULT]/transport_url",
|
||||
help='Host to locate redis.'),
|
||||
cfg.PortOpt('port',
|
||||
default=6379,
|
||||
deprecated_for_removal=True,
|
||||
deprecated_reason="Replaced by [DEFAULT]/transport_url",
|
||||
help='Use this port to connect to redis host.'),
|
||||
cfg.StrOpt('password',
|
||||
default='',
|
||||
secret=True,
|
||||
deprecated_for_removal=True,
|
||||
deprecated_reason="Replaced by [DEFAULT]/transport_url",
|
||||
help='Password for Redis server (optional).'),
|
||||
cfg.ListOpt('sentinel_hosts',
|
||||
default=[],
|
||||
deprecated_for_removal=True,
|
||||
deprecated_reason="Replaced by [DEFAULT]/transport_url",
|
||||
help='List of Redis Sentinel hosts (fault tolerance mode) e.g.\
|
||||
[host:port, host1:port ... ]'),
|
||||
cfg.StrOpt('sentinel_group_name',
|
||||
|
Loading…
x
Reference in New Issue
Block a user