Skip to content

Commit 3b943c0

Browse files
authored
Merge pull request cms-sw#43328 from Dr15Jones/fixCallID
Fix tracer log viewer issue with callID
2 parents 65a1dd2 + 77d23e7 commit 3b943c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FWCore/Services/scripts/edmTracerCompactLogViewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ def _postJson(self, counter, data):
661661
container = container[index]
662662
#find slot containing the pre
663663
for slot in container:
664-
if slot[-1]["mod"] == -1*self.moduleID and slot[-1]['callID'] == self.callID:
664+
if slot[-1]["mod"] == -1*self.moduleID and slot[-1].get('callID',0) == self.callID:
665665
slot[-1]["finish"]=self.time*kMicroToSec
666666
del slot[-1]['callID']
667667
return

0 commit comments

Comments
 (0)