Correct the mongodb_replica_set option's description

Current description for mongodb_replica_set is wrong, this patch
fixes it.

Change-Id: I0121beb7a71a282eb73b48d7a7fd4dccb0d36a31
DocImpact
This commit is contained in:
ZhiQiang Fan 2014-11-03 17:19:50 +08:00 committed by ZhiQiang Fan
parent 6fde045959
commit 8c64072240

View File

@ -60,8 +60,9 @@ OPTS = [
'database. (if unset, connection is used)'),
cfg.StrOpt('mongodb_replica_set',
default='',
help="The connection string used to connect to mongo database, "
"if mongodb replica set was chosen."),
help='The name of the replica set which is used to connect to '
'MongoDB database. If it is set, MongoReplicaSetClient '
'will be used instead of MongoClient.'),
]
cfg.CONF.register_opts(OPTS, group='database')