We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e742fc3 commit 3d31ab8Copy full SHA for 3d31ab8
tap_github/client.py
@@ -173,8 +173,8 @@ def validate_response(self, response: requests.Response) -> None:
173
full_path = urlparse(response.url).path
174
if response.status_code in self.tolerated_http_errors:
175
msg = (
176
- f"{response.status_code} Tolerated Status Code: "
177
- f"{str(response.content)} (Reason: {response.reason}) for path: {full_path}"
+ f"{response.status_code} Tolerated Status Code "
+ f"(Reason: {response.reason}) for path: {full_path}"
178
)
179
self.logger.info(msg)
180
return
0 commit comments