We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b588672 commit 619cfd5Copy full SHA for 619cfd5
tests/doc_tests/test_docs_links.py
@@ -33,10 +33,7 @@ def check_link(_url, branch_name):
33
response = requests.get(_url)
34
print(f"[{response.status_code}] {_url}")
35
if response.status_code == 429:
36
- print("Rate-limited! Headers:")
37
- for k, v in response.headers.items():
38
- if "rate" in k.lower() or "retry" in k.lower():
39
- print(f"{k}: {v}")
+ print(response.text) # Logs the full response body
40
if response.status_code == 200:
41
return True
42
except Exception as e:
0 commit comments