Changes between Initial Version and Version 1 of Ticket #24574


Ignore:
Timestamp:
Apr 3, 2015, 5:08:09 AM (9 years ago)
Author:
Krish
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24574

    • Property Summary python manage.py runserver sleeps foreverpython manage.py runserver sleeps forever because of threading lock
  • Ticket #24574 – Description

    initial v1  
    1212}}}
    1313
    14 3. Thread starts locking process, so that same application not loaded twice.
     143. Thread starts threading lock process, so that same application not loaded twice.
    1515{{{#!python
    1616django.apps.registry::with self._lock:
     
    4242}}}
    4343
    44 Application stuck here in django.apps.registry::with self._lock: line because lock has been already acquired and not released.
     44Application stuck here in django.apps.registry::with self._lock: line because the threading lock has been already acquired and not released.
    4545
    4646'''Python:'''
Back to Top