Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wfcommons/wfbench/translator/nextflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _get_tasks_in_topological_order(self) -> List[Task]:
for potential_task in all_children:
num_children = len(self.task_children[potential_task.task_id])
if not num_children:
self.out_files.add(f"{self.output_folder.absolute()}/{potential_task.output_files[0]}")
self.out_files.add(f"{self.output_folder.absolute()}/data/{potential_task.output_files[0]}")
if all(parent in sorted_tasks for parent in self._find_parents(potential_task.task_id)):
tasks_in_current_level.append(potential_task)
levels[current_level] = tasks_in_current_level
Expand Down
1 change: 1 addition & 0 deletions wfcommons/wfbench/translator/templates/flowcept_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@

try:
flowcept_agent.stop()
time.sleep(5)
except Exception:
import traceback
traceback.print_exc()
Expand Down