Re: django 1.3 timing out on empty POST request

2011-06-28 Thread mehdi ait oufkir
Hello Roberto, it looks like upgrading to uWSGI 0.9.8.1 solved the issue. Thanks for your help! On Jun 27, 9:18 pm, Roberto De Ioris <robe...@unbit.it> wrote: > Il giorno 27/giu/2011, alle ore 22.07, mehdi ait oufkir ha scritto: > > > Roberto, I'm actually using uWSGI 0.9.

Re: django 1.3 timing out on empty POST request

2011-06-27 Thread mehdi ait oufkir
(not sure if my previous message went through). Roberto, I'm using uWSGI 0.9.6.5. Can you tell me a bit more about the issue? and why this is happening only with 1.3. We can take the conversation of google group if you want. I can join the #uwsgi irc. Please let me know, -mehdi On Jun 26,

Re: django 1.3 timing out on empty POST request

2011-06-27 Thread mehdi ait oufkir
Roberto, I'm actually using uWSGI 0.9.6.5. Can you tell me what is the issue with the previous version. I can stop by on uwsgi IRC if you want to take the conversation off google's groups. -mehdi On Jun 26, 9:47 pm, "Roberto De Ioris" wrote: > > Roberto, > > > it is uWSGI,

Re: django 1.3 timing out on empty POST request

2011-06-26 Thread mehdi ait oufkir
Roberto, it is uWSGI, but can you explain a bit more what the post-buffering would help me do? Would it help me debug with pdb? -mehdi On Jun 25, 11:32 am, "Roberto De Ioris" wrote: > > @Karen, I tried the patch, and it doesn't seem to help. Do you have > > any ideas when is

Re: django 1.3 timing out on empty POST request

2011-06-25 Thread mehdi ait oufkir
@Karen, I tried the patch, and it doesn't seem to help. Do you have any ideas when is the 1.3.X scheduled to be released? @Bruno, using nginx + WSGI + DJANGO is the setup. -mehdi On Jun 25, 8:56 am, bruno desthuilliers <bruno.desthuilli...@gmail.com> wrote: > On Jun 25, 10:27 am,

Re: django 1.3 timing out on empty POST request

2011-06-25 Thread mehdi ait oufkir
lli...@gmail.com> wrote: > On Jun 24, 7:19 pm, mehdi ait oufkir <me...@punchtab.com> wrote: > > > > >     def cleanup_request(request): > >         """ > >         Removes `oauth_` keys from various dicts on the >

Re: django 1.3 timing out on empty POST request

2011-06-24 Thread mehdi ait oufkir
1 am, Ivo Brodien <i...@brodien.de> wrote: > On Jun 24, 2011, at 2:40 AM, mehdi ait oufkir wrote: > > > block = getattr(request, POST, { }) > > shouldn’t it be: > > block = getattr(request, ‘POST', { }) ? > > What are you trying to do? Can you post the rest of t

django 1.3 timing out on empty POST request

2011-06-23 Thread mehdi ait oufkir
Hello, I recently upgraded to django 1.3 and POST request with empty body seem to timeout. This call : block = getattr(request, POST, { }) seems to never return, when the request is POST request with an empty body. Let me know if you think you know what's going on. Thanks! -- You