~xianghui/ubuntu/trusty/oslo.messaging/icehouse-lp1521958

« back to all changes in this revision

Viewing changes to oslo/messaging/_drivers/matchmaker_redis.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-03-27 13:01:34 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20140327130134-va1pxzs253r43n15
Tags: 1.3.0~a9-0ubuntu1
* New upstream release (LP: #1298970)
* debian/control:
  - Add python-oslotest as a build dependency.
  - Use python-oslosphinx instead of python-oslo.sphinx

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
matchmaker_redis_opts = [
30
30
    cfg.StrOpt('host',
31
31
               default='127.0.0.1',
32
 
               help='Host to locate redis'),
 
32
               help='Host to locate redis.'),
33
33
    cfg.IntOpt('port',
34
34
               default=6379,
35
35
               help='Use this port to connect to redis host.'),
36
36
    cfg.StrOpt('password',
37
37
               default=None,
38
 
               help='Password for Redis server. (optional)'),
 
38
               help='Password for Redis server (optional).'),
39
39
]
40
40
 
41
41
CONF = cfg.CONF