Skip to content

Commit

Permalink
Merge pull request #43328 from Dr15Jones/fixCallID
Browse files Browse the repository at this point in the history
Fix tracer log viewer issue with callID
  • Loading branch information
cmsbuild authored Nov 20, 2023
2 parents 65a1dd2 + 77d23e7 commit 3b943c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FWCore/Services/scripts/edmTracerCompactLogViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ def _postJson(self, counter, data):
container = container[index]
#find slot containing the pre
for slot in container:
if slot[-1]["mod"] == -1*self.moduleID and slot[-1]['callID'] == self.callID:
if slot[-1]["mod"] == -1*self.moduleID and slot[-1].get('callID',0) == self.callID:
slot[-1]["finish"]=self.time*kMicroToSec
del slot[-1]['callID']
return
Expand Down

0 comments on commit 3b943c0

Please sign in to comment.