Changes between Initial Version and Version 1 of Ticket #24574
- Timestamp:
- Apr 3, 2015, 5:08:09 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24574
- Property Summary python manage.py runserver sleeps forever → python manage.py runserver sleeps forever because of threading lock
-
Ticket #24574 – Description
initial v1 12 12 }}} 13 13 14 3. Thread starts lockingprocess, so that same application not loaded twice.14 3. Thread starts threading lock process, so that same application not loaded twice. 15 15 {{{#!python 16 16 django.apps.registry::with self._lock: … … 42 42 }}} 43 43 44 Application stuck here in django.apps.registry::with self._lock: line because lock has been already acquired and not released.44 Application stuck here in django.apps.registry::with self._lock: line because the threading lock has been already acquired and not released. 45 45 46 46 '''Python:'''