You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Using the file_prefix argument in node.validate , then attempting to run the node within an interactive session with BSS.Node.run causes the following exeption: FileNotFoundError: [Errno 2] No such file or directory: 'output.yaml'.
This is due to the assumption here that the output file will always be called output.yaml, even if file_prefix is set to something different.
I've been trying to run multiple instances of a node simultaneously using dask, and I now see that this issue may be more difficult to solve than I initially thought.
In order for these to work robustly in parallel we need to be able to generate unique filenames for both input and output yaml files. This is easy enough with inputs, but with outputs it is more complex since the unique filename will likely need to be generated at runtime, meaning that the name isn't known until the node is run.
Describe the bug
Using the
file_prefix
argument innode.validate
, then attempting to run the node within an interactive session withBSS.Node.run
causes the following exeption: FileNotFoundError: [Errno 2] No such file or directory: 'output.yaml'.This is due to the assumption here that the output file will always be called
output.yaml
, even iffile_prefix
is set to something different.To Reproduce
Steps to reproduce the behavior:
(please complete the following information):
dev
releaseThe text was updated successfully, but these errors were encountered: