Skip to content
Snippets Groups Projects
Commit 7f3b25dd authored by Stefano Borini's avatar Stefano Borini
Browse files

Fixed error

parent 386e460d
No related branches found
No related tags found
1 merge request!122Introduced ExecutionLayer object to simplify notification handling
...@@ -57,7 +57,7 @@ class CoreMCODriver(BaseCoreDriver): ...@@ -57,7 +57,7 @@ class CoreMCODriver(BaseCoreDriver):
def _deliver_start_event(self): def _deliver_start_event(self):
output_names = [] output_names = []
for layer in self.workflow.execution_layers: for layer in self.workflow.execution_layers:
for data_source in layer.data_sources: for data_source in layer.data_source_models:
output_names.extend(info.name output_names.extend(info.name
for info in data_source.output_slot_info for info in data_source.output_slot_info
if info.is_kpi if info.is_kpi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment