Re: Issue with starting a process in middleware

2008-10-14 Thread bob
I didn't mean to imply no one was going to look at it. I'm sure it will get fixed. It's strange that on the surface nothing appears to be getting blocked but deep down something is getting deadlocked somewhere. If there is anything I can try to get more info let me know. Regards Bob > > > On

Re: Issue with starting a process in middleware

2008-10-14 Thread Malcolm Tredinnick
On Tue, 2008-10-14 at 08:21 +0100, [EMAIL PROTECTED] wrote: > I did Google around but obviously missed this. Having read it and followed > the links it is definitely the same issue. I will try and investigate but > I think bigger brains than mine have already given up so I may have to > find a

Re: Issue with starting a process in middleware

2008-10-14 Thread bob
I did Google around but obviously missed this. Having read it and followed the links it is definitely the same issue. I will try and investigate but I think bigger brains than mine have already given up so I may have to find a dirty work round. Thanks for pointing me in the right direction. Bob

Re: Issue with starting a process in middleware

2008-10-13 Thread Malcolm Tredinnick
On Mon, 2008-10-13 at 21:53 +0100, Bob Cowdery wrote: > Hi all > > Just starting out on Django. I have an app that needs a long running > process. This is a python process that gets started from some code that > I kick off from __init__ in a middleware class. Is there another way to > do this?

Issue with starting a process in middleware

2008-10-13 Thread Bob Cowdery
Hi all Just starting out on Django. I have an app that needs a long running process. This is a python process that gets started from some code that I kick off from __init__ in a middleware class. Is there another way to do this? I just use subprocess.Popen() to start the other process.