From 8c640722407f83e76a610d2ef27bfb66799d7023 Mon Sep 17 00:00:00 2001 From: ZhiQiang Fan Date: Mon, 3 Nov 2014 17:19:50 +0800 Subject: [PATCH] Correct the mongodb_replica_set option's description Current description for mongodb_replica_set is wrong, this patch fixes it. Change-Id: I0121beb7a71a282eb73b48d7a7fd4dccb0d36a31 DocImpact --- ceilometer/storage/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ceilometer/storage/__init__.py b/ceilometer/storage/__init__.py index 320fa9e39..68761e49f 100644 --- a/ceilometer/storage/__init__.py +++ b/ceilometer/storage/__init__.py @@ -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')