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 bb757f4 commit ea72213Copy full SHA for ea72213
sentry_sdk/integrations/aiohttp.py
@@ -389,7 +389,7 @@ def _prepopulate_attributes(request):
389
attributes["server.address"] = request.host
390
391
try:
392
- url = f"{request.scheme}: //{request.host}{request.path}"
+ url = f"{request.scheme}://{request.host}{request.path}"
393
if request.query_string:
394
attributes["url.full"] = f"{url}?{request.query_string}"
395
except Exception:
0 commit comments