Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/oci/base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down