Merge "Fix dmaap-datarouter test to run with py36"
authorLasse Kaihlavirta <l.kaihlavirt@partner.samsung.com>
Wed, 3 Mar 2021 13:53:12 +0000 (13:53 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 3 Mar 2021 13:53:12 +0000 (13:53 +0000)
scripts/dmaap-datarouter/remove_cert_from_ca.py

index 192e274..4ed9b77 100644 (file)
@@ -28,7 +28,7 @@ dr_cert_exists = False
 
 with open(cafile, 'r+b', buffering=0) as outfile:
     for line in outfile.readlines()[-35:-34]:
-        if "# Serial: 0x9EAEEDC0A7CEB59D" in line:
+        if '# Serial: 0x9EAEEDC0A7CEB59D'.encode() in line:
             dr_cert_exists = True
     if dr_cert_exists:
         outfile.seek(0, os.SEEK_END)