~ceilometer-drivers/ceilometer/trunk

« back to all changes in this revision

Viewing changes to ceilometer/openstack/common/cfg.py

  • Committer: Angus Salkeld
  • Date: 2012-11-03 00:31:11 UTC
  • Revision ID: git-v1:4c43441d9dafedbc1b73cf8abdec32b1ccb65a71
Update common (except policy)

Change-Id: I17a89a15ff3af5b9f31bf14b1bbe29b024cfc8c1

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
This module also contains a global instance of the CommonConfigOpts class
237
237
in order to support a common usage pattern in OpenStack:
238
238
 
239
 
  from openstack.common import cfg
 
239
  from ceilometer.openstack.common import cfg
240
240
 
241
241
  opts = [
242
 
    cfg.StrOpt('bind_host' default='0.0.0.0'),
 
242
    cfg.StrOpt('bind_host', default='0.0.0.0'),
243
243
    cfg.IntOpt('bind_port', default=9292),
244
244
  ]
245
245