Draft: Debug stream recovery, Fix for addition of HLT_rejected_events histogram
1 unresolved thread
Fix for !64216 (merged), to protect against HIST_DEBUGSTREAMMON not being in the argument list.
Merge request reports
Activity
Filter activity
Hi @jcurran, could you confirm trigP1_v1PhysP1_T0MonTrf_build runs fine with your fix?
It looks like you have to update your local version by doing
git fetch upstream git rebase upstream/23.0 # Fix any conflicts git push --force origin
Edited by Edson Carquin Lopez322 325 # write out file line by line 323 326 for line in log_file: 324 327 merged_file.write(line) 328 # Check for rejected events in log file 329 if 'rejected:' in line and int(line[14]) != 0: 330 #Add the number of rejected events 331 rejected += int(line[14]) 332 333 if "HIST_DEBUGSTREAMMON" in self.conf.dataDictionary: Hi @jcurran , I was comparing this MR with !64216 (merged), and it seems that this line
if "HIST_DEBUGSTREAMMON" in self.conf.dataDictionary:
is the only difference.If the one-line fix was validated and confirmed to work, we won't revert !64216 (merged) , so we should have a one-line change in this MR (rather than the full commit from last MR with an extra line), if I get it right.
Please register or sign in to reply