Browse Source

Merge pull request #9482 from Miciah/sdn-check-fix-parsing-time-stamp's-time-zone

SDN check: Fix parsing time stamp's time zone
Michael Gugino 6 years ago
parent
commit
44b45aa63e
1 changed files with 7 additions and 1 deletions
  1. 7 1
      roles/openshift_health_checker/openshift_checks/sdn.py

+ 7 - 1
roles/openshift_health_checker/openshift_checks/sdn.py

@@ -337,8 +337,14 @@ class SDNCheck(OpenShiftCheck):
             self.register_failure('%s is not started.' % service_name)
             return
 
+        # The timestamp should be in the format "%a %Y-%m-%d %H:%M:%S %Z".
+        # However, Python cannot reliably parse timezone names
+        # (see <https://bugs.python.org/issue22377>), so we must drop the
+        # timezone name before parsing the timestamp.
+        start_timestamp = ' '.join(start_timestamp.split()[0:3])
+
         since_date = datetime.datetime.strptime(start_timestamp,
-                                                '%a %Y-%m-%d %H:%M:%S %Z')
+                                                '%a %Y-%m-%d %H:%M:%S')
         until_date = since_date + datetime.timedelta(minutes=5)
         since = since_date.strftime(time_fmt)
         until = until_date.strftime(time_fmt)