fix: update base_host call in export_task to include request parameter for S3Storage integration (#4761)

This commit is contained in:
Nikhil
2025-11-14 20:15:53 +05:30
committed by GitHub
parent fdc7acc126
commit e4dfdd4f96
+1 -1
View File
@@ -35,7 +35,7 @@ class _FakeDjangoRequest:
self.GET = QueryDict(mutable=True)
# Get the public URL from environment variables
web_url = base_host(is_app=True)
web_url = base_host(is_app=True, request=None)
parsed_url = urlparse(web_url)
# Add scheme and host attributes needed by S3Storage