Changes between Initial Version and Version 1 of Ticket #35807, comment 2
- Timestamp:
- Oct 7, 2024, 2:53:07 AM (5 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35807, comment 2
initial v1 1 1 Firstly, just for Django, set_urlconf is not public API so you shouldn't use it. Rather prefer the documented `HttpRequest.urlconf` attribute ([https://docs.djangoproject.com/en/5.1/ref/request-response/#django.http.HttpRequest.urlconf docs]) to set per-tenant URLs in a middleware, if that's your strategy. 2 2 3 Secondly, the [https://github.com/django/asgiref/issues/473 linked asgiref issue (#473)] is in progress, and should be resolved shortly. (Setting locals has been leaking out of asyncio tasks since the recent v3.8, which is a regression. ) It's not a Django issue.3 Secondly, the [https://github.com/django/asgiref/issues/473 linked asgiref issue (#473)] is in progress, and should be resolved shortly. (Setting locals has been leaking out of asyncio tasks since the recent v3.8, which is a regression. You can pin to v3.7.2 pending the next release.) It's not a Django issue. 4 4 5 5 If you need further advice please see TicketClosingReasons/UseSupportChannels.