Skip to content

Commit

Permalink
Add logging for unsupported feature
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaykiran committed Mar 23, 2022
1 parent 20b1bbb commit 8ba4b93
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions soda/core/soda/soda_cloud/soda_cloud_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ def _execute_request(self, request_type: str, request_body: dict, is_retry: bool
self.token = None
response_json = self._execute_request(request_type, request_body, True)
else:
pass
# assert (
# response.status_code == 200
# ), f"Request failed with status {response.status_code}: {json.dumps(response_json, indent=2)}"
logger.debug("Soda Cloud: Unsupported feature!")
return response_json

def _get_token(self):
Expand Down

0 comments on commit 8ba4b93

Please sign in to comment.