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

exception for pdf variation check for bb4l #3752

Merged
merged 1 commit into from
Aug 23, 2024
Merged
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
2 changes: 1 addition & 1 deletion bin/utils/request_fragment_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
if str(pw_pdf+1) in line: pdf_var_check1 += 1
if not (scale_var_check0 == 1 and scale_var_check1 == 9):
warnings.append("There may be a problem with scale variations. Please check pwg-rwl.dat")
if not (pdf_var_check0 > 0 and pdf_var_check1 >= 1 and 'bb4l' not in dn.lower()):
if not (pdf_var_check0 > 0 and pdf_var_check1 >= 1) and 'bbllnunu' not in dn.lower():
errors.append("There may be a problem with PDF variations. Please check pwg-rwl.dat")
if bornonly == 1:
bornonly_frag_check = 0
Expand Down