Skip to content
Snippets Groups Projects
Commit e8bd1c8b authored by Marius van den Beek's avatar Marius van den Beek
Browse files

Fix typo and duplicate line

parent 0ae16332
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ log = logging.getLogger(__name__)
def postprocess(job_directory, action_executor):
# Returns True iff outputs were collected.
# Returns True if outputs were collected.
try:
staging_config = job_directory.load_metadata("staging_config", None)
collected = __collect_outputs(job_directory, staging_config, action_executor)
......@@ -30,7 +30,6 @@ def __collect_outputs(job_directory, staging_config, action_executor):
pulsar_outputs = __pulsar_outputs(job_directory)
output_collector = PulsarServerOutputCollector(job_directory, action_executor)
results_collector = ResultsCollector(output_collector, file_action_mapper, client_outputs, pulsar_outputs)
results_collector = ResultsCollector(output_collector, file_action_mapper, client_outputs, pulsar_outputs)
collection_failure_exceptions = results_collector.collect()
if collection_failure_exceptions:
log.warn("Failures collecting results %s" % collection_failure_exceptions)
......
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