Skip to content
Snippets Groups Projects
Commit 536a6e16 authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'AltCoolConsoleFix' into 'master'

fix python problem in AtlCoolConsole

See merge request !42043
parents 8b754da3 7e2eb22a
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!42043fix python problem in AtlCoolConsole
...@@ -368,7 +368,7 @@ class AtlCoolTool: ...@@ -368,7 +368,7 @@ class AtlCoolTool:
i+= " ["+spec[idx].name() + " (" + typename + ") : " i+= " ["+spec[idx].name() + " (" + typename + ") : "
if (typename.startswith("Blob")): if (typename.startswith("Blob")):
blob=payload[idx] blob=payload[idx]
i+= "size=%i,chk=%i" % (blob.size(),crc32(blob.read().encode())) i+= "size=%i,chk=%i" % (blob.size(),crc32(blob.read()))
else: else:
i+= str(payload[idx]) i+= str(payload[idx])
i+="]" i+="]"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment