Skip to content
New issue

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

More detailed error description #328

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cg_lims/EPPs/udf/copy/measurement_to_analyte.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ def copy_udfs_to_all_analytes(
except:
failed_artifacts += 1
if failed_artifacts:
udfs_summary="\', and udf \'".join(str(x[0]) for x in udfs)
raise MissingUDFsError(
message=f"Failed to set artifact udfs on {failed_artifacts} artifacts. See log for details"
message=f"Failed to set artifact udf \'{udfs_summary}\' on {failed_artifacts} artifacts. See log for details"
)


Expand Down