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: If prelaunch/launch are run twice with the same jobname, list will report that the first job used the commands from the second job
prelaunch
launch
list
Expected: Either list does not report the first job, or it reports the original commands.
Python: python 3.7 Library version: 0.1.0.a
To reproduce:
$ thoth prelaunch +command sleep +jobname sleepy +arg '' {1..5} $ thoth launch --backend slurm --jobname sleepy $ thoth prelaunch +command sleep +jobname sleepy +arg '' {6..10} $ thoth launch --backend slurm --jobname sleepy $ thoth list
Output:
job_id task_id jobname command tag -------- --------- --------- ----------- ----- 13434297 1 sleepy 'sleep 6' 13434297 2 sleepy 'sleep 7' 13434297 3 sleepy 'sleep 8' 13434297 4 sleepy 'sleep 9' 13434297 5 sleepy 'sleep 10' 13434299 1 sleepy 'sleep 6' 13434299 2 sleepy 'sleep 7' 13434299 3 sleepy 'sleep 8' 13434299 4 sleepy 'sleep 9' 13434299 5 sleepy 'sleep 10'
The text was updated successfully, but these errors were encountered:
Verified on slurm backend
Sorry, something went wrong.
No branches or pull requests
Issue: If
prelaunch
/launch
are run twice with the same jobname,list
will report that the first job used the commands from the second jobExpected: Either
list
does not report the first job, or it reports the original commands.Python: python 3.7
Library version: 0.1.0.a
To reproduce:
Output:
The text was updated successfully, but these errors were encountered: