Browse Source

Fixing a compatibility issue with python 2.7 to 3.5 when reading from subprocess.

Kenny Woodson 8 years ago
parent
commit
49457197ae

+ 1 - 1
roles/lib_openshift/library/oc_adm_ca_server_cert.py

@@ -1508,7 +1508,7 @@ class CAServerCert(OpenShiftCLI):
         x509output, _ = proc.communicate()
         if proc.returncode == 0:
             regex = re.compile(r"^\s*X509v3 Subject Alternative Name:\s*?\n\s*(.*)\s*\n", re.MULTILINE)
-            match = regex.search(x509output)  # E501
+            match = regex.search(x509output.decode())  # E501
             if not match:
                 return False
 

+ 1 - 1
roles/lib_openshift/src/class/oc_adm_ca_server_cert.py

@@ -77,7 +77,7 @@ class CAServerCert(OpenShiftCLI):
         x509output, _ = proc.communicate()
         if proc.returncode == 0:
             regex = re.compile(r"^\s*X509v3 Subject Alternative Name:\s*?\n\s*(.*)\s*\n", re.MULTILINE)
-            match = regex.search(x509output)  # E501
+            match = regex.search(x509output.decode())  # E501
             if not match:
                 return False