Changes between Initial Version and Version 1 of Ticket #35807, comment 2


Ignore:
Timestamp:
Oct 7, 2024, 2:53:07 AM (5 weeks ago)
Author:
Carlton Gibson

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35807, comment 2

    initial v1  
    11Firstly, 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.
    22
    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.
     3Secondly, 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.
    44
    55If you need further advice please see TicketClosingReasons/UseSupportChannels.
Back to Top