Merge changes from topic 'prox-stable/fraser' into stable/fraser
[yardstick.git] / yardstick / dispatcher / base.py
index e77249c..1fc0a2f 100644 (file)
@@ -41,9 +41,11 @@ class Base(object):
     def get(config):
         """Returns instance of a dispatcher for dispatcher type.
         """
-        out_type = config['DEFAULT']['dispatcher']
+        list_dispatcher = \
+            [Base.get_cls(out_type.capitalize())(config)
+             for out_type in config['DEFAULT']['dispatcher']]
 
-        return Base.get_cls(out_type.capitalize())(config)
+        return list_dispatcher
 
     @abc.abstractmethod
     def flush_result_data(self, data):