From 9a3e05688082994308bbfc4be06edf9ae6e92278 Mon Sep 17 00:00:00 2001 From: xingzhou Date: Wed, 17 Jul 2013 01:50:13 -0400 Subject: [PATCH] Remove useless mongodb connection pool comment As connection pool feature has been delivered in 'Use a real MongoDB instance to run unit tests', remove the relevant comments in code. Change-Id: I515c7818350d39173f4435c4141b4e929c1a1a6c --- ceilometer/storage/impl_mongodb.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ceilometer/storage/impl_mongodb.py b/ceilometer/storage/impl_mongodb.py index 04ead7758..d1acfb279 100644 --- a/ceilometer/storage/impl_mongodb.py +++ b/ceilometer/storage/impl_mongodb.py @@ -88,10 +88,6 @@ class MongoDBStorage(base.StorageEngine): conf.register_group(self.OPTION_GROUP) conf.register_opts(self.OPTIONS, self.OPTION_GROUP) - # FIXME(xingzhou): ceilometer-api will create a Connection object for - # each request. As pymongo.Connection has already maintained a db - # connection pool for client, it is better to use a cached Connection - # object to connect to mongodb. def get_connection(self, conf): """Return a Connection instance based on the configuration settings. """