~ubuntu-branches/ubuntu/vivid/ceilometer/vivid

« back to all changes in this revision

Viewing changes to ceilometer/alarm/storage/impl_mongodb.py

  • Committer: Package Import Robot
  • Author(s): James Page, Corey Bryant, James Page
  • Date: 2015-02-19 14:59:07 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20150219145907-9jojybdsl64zcn14
Tags: 2015.1~b2-0ubuntu1
[ Corey Bryant ]
* New upstream release.
  - d/control: Align requirements with upstream.
  - d/p/skip-test.patch: Rebased.

[ James Page ]
* d/rules,d/p/skip-gabbi.patch: Skip tests that rely on python-gabbi until
  packaging and MIR is complete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# under the License.
21
21
"""MongoDB storage backend"""
22
22
 
23
 
from oslo.config import cfg
24
23
import pymongo
25
24
 
26
25
from ceilometer.alarm.storage import pymongo_base
28
27
from ceilometer import storage
29
28
from ceilometer.storage.mongo import utils as pymongo_utils
30
29
 
31
 
cfg.CONF.import_opt('time_to_live', 'ceilometer.storage',
32
 
                    group="database")
33
 
 
34
30
LOG = log.getLogger(__name__)
35
31
 
36
32