Acknowledge obsolete PR

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
google-labs-jules[bot]
2026-05-17 13:36:52 +00:00
parent 58b14ae769
commit 2979302839
3 changed files with 8 additions and 3 deletions
+1 -2
View File
@@ -194,11 +194,10 @@ async def process_url(
async with httpx.AsyncClient(
timeout=settings.http_request_timeout,
follow_redirects=True,
event_hooks={"response": [validate_redirect]},
headers={
"User-Agent": "DocuElevate/1.0", # Identify ourselves
},
event_hooks={"response": [verify_redirect]},
event_hooks={"response": [validate_redirect, verify_redirect]},
) as client:
async with client.stream("GET", url) as response:
response.raise_for_status()