-
Notifications
You must be signed in to change notification settings - Fork 10
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
Skip dinamically some checks for the validation procedure #1182
base: master
Are you sure you want to change the base?
Conversation
looks good. |
what's the prospect of rolling this in production "soon" ? |
b3c5dc2
to
eb0be24
Compare
9862cd8
to
0dc7150
Compare
there's actually something else to be added for this feature : cmsPdmV/mcm/json_layer/request.py Line 3028 in 438ec71
filter_efficiency should not be re-assigned, in case the prepid is in the bypass check |
0dc7150
to
eb13eb4
Compare
Thanks for the feedback, it should be fixed now |
nice |
eb13eb4
to
3935baf
Compare
For a given request prepid set in the `validation_skip_check`, skip if required some checks related to the `time_per_event`, `size_per_event` `memory` and `filter_efficiency`.
3935baf
to
b6cff91
Compare
https://cms-pdmv-prod.web.cern.ch/mcm/public/restapi/requests/get_dict/SUS-RunIISpring21UL16FSGSPremixLLPBugFix-00071 does not seem to pick up the request values instead of the runtests results |
|
||
# Filter efficiency was not check on validation | ||
filter_efficiency = self.get_efficiency() | ||
request_skip_check = self.get_allowed_skip_validation_check().get(self.get_attribute("prepid")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from the code in the PR and the failing check on https://cms-pdmv-prod.web.cern.ch/mcm/public/restapi/requests/get_dict/SUS-RunIISpring21UL16FSGSPremixLLPBugFix-00071 I can only think of this line failing silently
Solves: #1181
For a given request prepid set in the
validation_skip_check
setting, skip if required some checks related to thetime_per_event
,size_per_event
memory
andfilter_efficiency
.