Re: request_finished signal not being called with Django 1.5.1 with uwsgi

2013-05-31 Thread jaap
The problem is mainly that the current LTS of Ubuntu ships this ancient version of uwsgi via apt. So it's very easy to end up with a system that's not capable of running Django 1.5 properly (sysadmins seem to prefer apt over pip). Seems sensible to at least specify the minimum uWSGI version in

Re: request_finished signal not being called with Django 1.5.1 with uwsgi

2013-05-31 Thread Roberto De Ioris
> I've created a ticket https://code.djangoproject.com/ticket/20537 > > Not sure if this can be fixed in Django or a stern warning in the > documentation can suffice. Honestly (i am the main uWSGI author) whoever is using a uWSGI version < 1.2.6 should be worried by dozens more things (no more

Re: request_finished signal not being called with Django 1.5.1 with uwsgi

2013-05-31 Thread jaap
I've created a ticket https://code.djangoproject.com/ticket/20537 Not sure if this can be fixed in Django or a stern warning in the documentation can suffice. Op donderdag 30 mei 2013 17:15:29 UTC+2 schreef ja...@eight.nl het volgende: > > I'm being hit by the same issue. I don't really

Re: request_finished signal not being called with Django 1.5.1 with uwsgi

2013-05-30 Thread jaap
I'm being hit by the same issue. I don't really understand why it worked with older versions of Django though? That seems to be a bug. Op vrijdag 12 april 2013 01:28:42 UTC+2 schreef Lewis Sobotkiewicz het volgende: > > So figured it out. > > Apparently Ubuntu 12.04 packages uwsgi 1.0.3 in

Re: request_finished signal not being called with Django 1.5.1 with uwsgi

2013-04-11 Thread Lewis Sobotkiewicz
So figured it out. Apparently Ubuntu 12.04 packages uwsgi 1.0.3 in their apt repository, which doesn't support calling close() on the WSGI application object returned by Django. I had installed that uWsgi version, then installed a more up-to-date version with pip. ie. pip install uwsgi==1.4.4

request_finished signal not being called with Django 1.5.1 with uwsgi

2013-04-10 Thread Lewis Sobotkiewicz
Hi there, I'm noticing some strange behaviour with Django 1.5.1 and uwsgi - The builtin signal django.core.signals.request_finished isn't being triggered. I've tried various versions of uwsgi, and they all have the same behaviour. Also, when I downgrade to Django 1.4.5, the normal behaviour