Changes between Initial Version and Version 1 of Ticket #24574
- Timestamp:
- 04/03/15 10:08:09 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24574
-
Property
Summary
changed from
python manage.py runserver sleeps forever
topython manage.py runserver sleeps forever because of threading lock
-
Property
Summary
changed from
-
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:'''