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
However, CHX pdf files are written to the parent directory of this path, with a file name tagged with the uid and a revision number. I believe this is to avoid overwriting the PDF files between multiple notebook runs.
Semantically, CHX PDF path is something like
${output_dir}/../*${uid}*.pdf # note: this will include revisions
This path mismatch is preventing raydata from offering generated PDF files for download (manually copying to ${output_dir} makes raydata recognize them).
Edit:
To clarify further, CHX ${output_dir} itself is structured like ${PARENT_OUTPUT_DIR}/${uid} with the same ${PARENT_OUTPUT_DIR} for all scans for a given user (and cycle). It stores all PDF revisions from all runs, tagged with uid and a revision number. Everything in ${PARENT_OUTPUT_DIR}/${uid} seems to get overwritten upon rerun.
The text was updated successfully, but these errors were encountered:
Currently, scan monitor is looking for PDF files like
sirepo/sirepo/raydata/analysis_driver/__init__.py
Lines 32 to 33 in 59b71d0
However, CHX pdf files are written to the parent directory of this path, with a file name tagged with the uid and a revision number. I believe this is to avoid overwriting the PDF files between multiple notebook runs.
Semantically, CHX PDF path is something like
This path mismatch is preventing raydata from offering generated PDF files for download (manually copying to
${output_dir}
makes raydata recognize them).Edit:
To clarify further, CHX
${output_dir}
itself is structured like${PARENT_OUTPUT_DIR}/${uid}
with the same${PARENT_OUTPUT_DIR}
for all scans for a given user (and cycle). It stores all PDF revisions from all runs, tagged with uid and a revision number. Everything in${PARENT_OUTPUT_DIR}/${uid}
seems to get overwritten upon rerun.The text was updated successfully, but these errors were encountered: