Merge "refactor congress inspector"
authorwenjuan dong <dong.wenjuan@zte.com.cn>
Sat, 29 Jul 2017 04:44:03 +0000 (04:44 +0000)
committerGerrit Code Review <gerrit@opnfv.org>
Sat, 29 Jul 2017 04:44:03 +0000 (04:44 +0000)
1  2 
tests/inspector/__init__.py

@@@ -11,7 -11,6 +11,7 @@@ import o
  from oslo_config import cfg
  from oslo_utils import importutils
  
 +
  OPTS = [
      cfg.StrOpt('type',
                 default=os.environ.get('INSPECTOR_TYPE', 'sample'),
@@@ -20,7 -19,7 +20,7 @@@
                 required=True),
      cfg.StrOpt('ip',
                 default='127.0.0.1',
 -               help='the ip of default inspector',
 +               help='the host ip of inspector',
                 required=False),
      cfg.StrOpt('port',
                 default='12345',
  
  _inspector_name_class_mapping = {
      'sample': 'inspector.sample.SampleInspector',
+     'congress': 'inspector.congress.CongressInspector',
  }
  
 +
  def get_inspector(conf, log):
      inspector_class = _inspector_name_class_mapping[conf.inspector.type]
      return importutils.import_object(inspector_class, conf, log)