Changes between Initial Version and Version 1 of Ticket #35577
- Timestamp:
- Jul 5, 2024, 3:32:43 AM (5 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35577 – Description
initial v1 7 7 This means that for the debugserver one connection will remain permanently open. The name of the thread on which this connection is created is `django-main-thread`. 8 8 9 9 Looking at [https://docs.djangoproject.com/en/5.0/ref/databases/#persistent-connections the documentation] the per-request model of connection lifetimes is clear. Other than that the following caveat is documented: 10 10 11 11 > If a connection is created in a long-running process, outside of Django’s request-response cycle, the connection will remain open until explicitly closed, or timeout occurs.