Re: Django 1.5 runserver hangs in Chrome

2013-07-10 Thread Nikolas Stevenson-Molnar
After a lot of dead ends, I finally found the problem! The cause is the switch to using CompatibleStreamingHttpResponse in the django.views.static.server view. Previously, the view simply read the whole file into memory and returned a regular HTTP response. The StreamingHTTPResponse class uses the

Re: Django 1.5 runserver hangs in Chrome

2013-07-10 Thread Nikolas Stevenson-Molnar
Hi Sven, Thanks for the suggestion. Unfortunately, this didn't resolve the issue for me. Chrom is still hanging on that page. It loads most of the resources, then hangs indefinitely while requesting several images. If I close the tab, I get a stack trace in the Django log (connection aborted) whi

Re: Django 1.5 runserver hangs in Chrome

2013-07-08 Thread Larry Martell
On Mon, Jul 8, 2013 at 9:16 AM, François Schiettecatte wrote: > Its the little gear at the bottom right, took me a while to find it. Got it! Thanks! > On Jul 8, 2013, at 11:10 AM, Larry Martell wrote: > >> On Mon, Jul 8, 2013 at 5:00 AM, Sven Bröckling wrote: >>> Hi, >>> >>> Chrome sometimes

Re: Django 1.5 runserver hangs in Chrome

2013-07-08 Thread François Schiettecatte
Its the little gear at the bottom right, took me a while to find it. F. On Jul 8, 2013, at 11:10 AM, Larry Martell wrote: > On Mon, Jul 8, 2013 at 5:00 AM, Sven Bröckling wrote: >> Hi, >> >> Chrome sometimes does really strange things. I use chrome with a disabled >> cache for development (Op

Re: Django 1.5 runserver hangs in Chrome

2013-07-08 Thread Larry Martell
On Mon, Jul 8, 2013 at 5:00 AM, Sven Bröckling wrote: > Hi, > > Chrome sometimes does really strange things. I use chrome with a disabled > cache for development (Open Developer Tools, click on the settings menu, > first option) which resolves this kind of problems for me. I'm frequently emptying

Re: Django 1.5 runserver hangs in Chrome

2013-07-08 Thread Sven Bröckling
Hi, Chrome sometimes does really strange things. I use chrome with a disabled cache for development (Open Developer Tools, click on the settings menu, first option) which resolves this kind of problems for me. Regards Sven I can confirm this issue. Exactly the same problem here. Also,

Re: Django 1.5 runserver hangs in Chrome

2013-07-04 Thread eXt
I can confirm this issue. Exactly the same problem here. W dniu czwartek, 4 lipca 2013 02:52:58 UTC+2 użytkownik Nikolas Stevenson-Molnar napisał: > > Also, while Chrome is spinning, I can open Firefox and load pages > (including the problem page) just fine. So it's not that the server is > ov

Re: Django 1.5 runserver hangs in Chrome

2013-07-03 Thread Nikolas Stevenson-Molnar
Also, while Chrome is spinning, I can open Firefox and load pages (including the problem page) just fine. So it's not that the server is overloaded or anything like that... _Nik On 7/3/2013 5:39 PM, Nikolas Stevenson-Molnar wrote: > I've just updated to Django 1.5 and am running into a problem wh

Django 1.5 runserver hangs in Chrome

2013-07-03 Thread Nikolas Stevenson-Molnar
I've just updated to Django 1.5 and am running into a problem when using Chrome with the Django devlopment server (and staticfiles). One particular page which loads a lot of static content /consistently/ hangs in Chrome (works fine in Firefox). This seems similar to two resolved issues: https://cod