Re: [web2py] cron Too many open files regression?

2011-07-07 Thread ron_m
The code running this is in gluon/newcron.py From your stack trace you are using hard cron which is a class at line 44. It runs launch once a minute This runs crondance which puts a wrapper on the tasks that should be run adding web2py run line parameters if * or ** is at the beginning of the

Re: [web2py] cron Too many open files regression?

2011-07-06 Thread John Duddy
None that I know of. The processes that accumulate have the same arguments as the main web2py process (as shown by ps -ef) so it's like a fork with no exec. On Wednesday, July 6, 2011, ron_m ron.mco...@gmail.com wrote: Maybe one possibility is if your code has classes with a __del__ method in

[web2py] cron Too many open files regression?

2011-07-05 Thread John Duddy
I'm getting the following stack trace in my console after leaving my app running overnight. We use cron for several tasks. I saw the below thread, which indicated that the issue has been resolved: