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 src/vip_client/classes/VipLauncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ def _get_exec_infos(cls, workflow_id: str) -> dict:
),
# Returned files (filtered information)
"outputs": [] if not infos["returnedFiles"] else [
{"path": value} for value in infos["returnedFiles"]["output_file"]
{"path": value} for output_files in infos["returnedFiles"].values() for value in output_files
]
}
# ------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions src/vip_client/classes/VipSession.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,8 @@ def download_outputs(
"... ", end="", sep="", flush=True
)
self._update_workflows(get_exec_results=True, timeout=init_timeout)
# update output info
self._save()
self._print("Done.\n")
# Initial display
self._print("Downloading pipeline outputs to:", self._local_output_dir)
Expand Down