fix 'str' object has no attribute 'get'

The function _compare_value attempts to return if "resp_value" is not set.
The problem occurs when one of the functions sets the response value "None" as string, rather than pythonic None.
This is a fix to also exit this function on a "None" string response value.
This commit is contained in:
Zach 2021-04-25 18:51:23 +03:00 committed by GitHub
parent b84fd05309
commit 9a72a0acf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -394,7 +394,7 @@ class GcpRequest(object):
diff = None
# If a None is found, a difference does not exist.
# Only differing values matter.
if not resp_value:
if not resp_value or resp_value == "None":
return None
# Can assume non-None types at this point.