We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issue: Running parallel sessions leads to race conditions where each session tries to access or write to f"/tmp/DSSAT{VERSION}".
Replace line 50 in run.py
Py_DSSATTools/DSSATTools/run.py
Line 50 in c9d9e14
which creates the folder /tmp/ with
with tempfile.TemporaryDirectory() as TMP: print('created temporary directory', TMP)
each session now creates a unique temporary folder, thus solving the issue.
The text was updated successfully, but these errors were encountered:
Note: parallel session defined as running array jobs on a cluster with slurm.
Sorry, something went wrong.
No branches or pull requests
issue: Running parallel sessions leads to race conditions where each session tries to access or write to f"/tmp/DSSAT{VERSION}".
Replace line 50 in run.py
Py_DSSATTools/DSSATTools/run.py
Line 50 in c9d9e14
which creates the folder /tmp/ with
each session now creates a unique temporary folder, thus solving the issue.
The text was updated successfully, but these errors were encountered: