Reverse default order of collectors.

The default order results in less-dynamic heat_local and ec2 overriding
the more dynamic cfn source. That is the opposite of what is desired.

Change-Id: I7e1feb2e6869b4f076200668dd204219ecc4224e
This commit is contained in:
Clint Byrum 2013-08-15 11:22:50 -07:00
parent 0238175a89
commit 13b6732546
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ from os_collect_config import exc
from os_collect_config import heat_local
from oslo.config import cfg
DEFAULT_COLLECTORS = ['ec2', 'cfn', 'heat_local']
DEFAULT_COLLECTORS = ['heat_local', 'ec2', 'cfn']
opts = [
cfg.StrOpt('command', short='c',
help='Command to run on metadata changes. If specified,'