Increase default polling interval

The polling interval was set to 60 seconds for testing
and development. This changeset increases it to 600
seconds, which should be more reasonable for production
deployment.

Change-Id: I45d834098194e39bab06fe6e18a2eb72e1e077a9
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
This commit is contained in:
Doug Hellmann 2012-10-03 11:44:56 -04:00
parent 16d8b439ec
commit 3e5a36c5f9

View File

@ -26,7 +26,7 @@ from ceilometer.openstack.common import cfg
cfg.CONF.register_opts([
cfg.IntOpt('periodic_interval',
default=60,
default=600,
help='seconds between running periodic tasks')
])