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
With version 0.10.8 of lstosa, autocloser gives the following error:
File "/fefs/aswg/software/conda/envs/osa-v0.10/lib/python3.11/site-packages/osa/scripts/closer.py", line 159, in post_process
longterm_job_id = daily_datacheck(daily_longterm_cmd(list_job_id))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/fefs/aswg/software/conda/envs/osa-v0.10/lib/python3.11/site-packages/osa/scripts/closer.py", line 492, in daily_datacheck
job_id = job.stdout.strip()
^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'strip'
2024-02-07 17:02:01,791 WARNING [root] (autocloser.main): Could not close the day for LST1!
For this reason, the DL1 files are not merged (as DL1 merging is done afterward) and the day is not closed correctly.
The text was updated successfully, but these errors were encountered:
The problem is that daily_longterm is running the subprocess simply as .run(cmd, check=True) and the stdout is not being captured, hence the error in job_id = job.stdout.strip()
With version 0.10.8 of lstosa, autocloser gives the following error:
For this reason, the DL1 files are not merged (as DL1 merging is done afterward) and the day is not closed correctly.
The text was updated successfully, but these errors were encountered: