diff --git a/src/oci/base_client.py b/src/oci/base_client.py index f0fcfb36e8..49aa900096 100644 --- a/src/oci/base_client.py +++ b/src/oci/base_client.py @@ -782,7 +782,7 @@ def deserialize_response_data(self, response_data, response_type): response_data = response_data.decode('utf8') try: - json_response = json.loads(response_data) + json_response = json.loads(response_data, strict=False) # Load everything as JSON and then verify that the object returned # is a string (six.text_type) if the response type is a string. # This is matches the previous behavior, which happens to strip