ozgur / python-firebase

Python interface to the Firebase's REST API
http://ozgur.github.com/python-firebase/
MIT License
593 stars 155 forks source link

process pooling does not play well with django runserver #9

Open Bpless opened 11 years ago

Bpless commented 11 years ago

In development mode, I often have to restart the runserver.

The atexit method, which cleans up the process pool, causes unpredictable behavior on runserver shutdown. I believe that this is because the lazyloader first instantiates the process pool during the atexit callback, during your attempt to terminate that same process pool.

robomotic commented 9 years ago

Trying now on Django 1.6 .... I fear the worse! :-)

volttech commented 8 years ago

I get this with async methods: AssertionError: daemonic processes are not allowed to have children on Django production server.