Skip to content
Snippets Groups Projects
Commit 8ad88abb authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Low tech debugging

parent 5f30852e
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !655. Comments created here will be created in the context of that merge request.
......@@ -698,6 +698,9 @@ async def get_slurm_nice(partition: str, instrument: str,
code, job_names = await run_proc_async(
['squeue', '-h', '-o', '%.20j', '-p', partition, '--me'])
print('squeue return code', code)
print('squeue output:', job_names)
if code != 0:
return 0 # Fallback if something went wrong.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment