Skip to content
Snippets Groups Projects

Improve synchronized output handling

7 files
+ 27
10
Compare changes
  • Side-by-side
  • Inline

Files

@@ -259,10 +259,12 @@ class LoopExecutor(object):
logger.debug("User loop has validated: {}\n{}".format(is_valid, answer))
return is_valid, answer
def write(self, end_data_index=None):
def write(self, processor_output_name, end_data_index=None):
"""Write the loop output"""
retval = self.runner.write(self.output_list, end_data_index)
retval = self.runner.write(
self.output_list, processor_output_name, end_data_index
)
logger.debug("User loop wrote output: {}".format(retval))
return retval
Loading