Page 2 of 2

Re: OS X queue page not loading fully

Posted: March 2nd, 2009, 9:09 pm
by rAf
@dcp Could you try 8080 with this patched build, please ?

Re: OS X queue page not loading fully

Posted: March 6th, 2009, 6:33 am
by rAf
anybody had tested the patched version ?

Re: OS X queue page not loading fully

Posted: March 6th, 2009, 1:18 pm
by b1scu1t
I tried it out and it still has the same issue.  Sorry!

Re: OS X queue page not loading fully

Posted: March 7th, 2009, 3:22 am
by dcp
have tried the patched version and it works!

Thanks.

Update: Sorry, I'm not using port 8080 though. Its another 8000 port but am able to view the full queue list externally and internally.

Re: OS X queue page not loading fully

Posted: March 9th, 2009, 10:17 am
by rAf
For me, with the patched version, all ports tested (8080,8090,8000) are working...
@b1scu1t : It's strange that 8090 works for you but not 8080... I don't see why.

Re: OS X queue page not loading fully

Posted: March 9th, 2009, 10:43 am
by b1scu1t
Raf,

It starts up fine and it works ok for some time, before it starts freezing up.  A restart sems to fix the problem.  May be there is something to do w/ my machine.

b1scu1t

Re: OS X queue page not loading fully

Posted: March 17th, 2009, 9:29 am
by panda21
rAf wrote: Some interesting infos found in this Cherrypy trac :

http://www.cherrypy.org/ticket/598

It seems that there is an old problem affecting OSX.

I've checked and I'm using the latest version of CherryPy in OSX build but not lastest python (2.5.2)
I've updated python to 2.5.4 and tested and same issue occurs.

I've try to patch CherryPy with that (from the link above not mine) :

Inside def tick(), comment out these two lines:

Code: Select all

    #if hasattr(s, 'settimeout'):
    #    s.settimeout(self.timeout)
And add these two:

Code: Select all

    if hasattr(s, 'setblocking'):
        s.setblocking(1)
And it seems to work... if someone wants to test here a link to a SAB patched version

It seems that internal Apple python may work, I'll try to test but we can't use this because we'll loose 10.4, 10.5 compatibility...

rAf
sorry for not replying before I stopped using sab for a while. I just tried this patched version out and it works perfectly now with a queue of about 65 items, when before it would only display the first few and then cut off. (still using 8080)

thank you so much!

Re: OS X queue page not loading fully

Posted: March 17th, 2009, 10:17 am
by rAf
Thanks for your report !