Skip to content

Commit

Permalink
Docs: Add hint on retrieving outputs from daemon submitted jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke authored Mar 22, 2024
1 parent 7029649 commit 31ebfbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/source/howto.rst
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,8 @@ Or you can do it programmatically:
for node in nodes:
if node.is_finished_ok:
print(f'{node} finished successfully')
# The outputs of each node can be accessed through `node.outputs`:
print(node.outputs.stdout.get_content())
else:
print(f'{node} failed')
Expand Down

0 comments on commit 31ebfbc

Please sign in to comment.