On Tue, Mar 18, 2003 at 12:22:11PM -0500, Greg Ward wrote: > On 17 March 2003, David Ascher said: > > Has anyone come up with a way to get quixote modules to get reloaded when > > they've been modified when running under mod_python? > > (Here's a loopy idea: put code in your Quixote that hunts down the > process that needs to be killed to restart: os.getpid() for SCGI, maybe > the same for mod_python, I dunno. Then add a "restart" link to your app > for debugging. It might work.) I've got this in one of my apps. Basically it forks, and exec's the SCGI server again. It'd probably be better to get the file to exec from a configuration variable than how I did it here. def reset(request): import sys, os, os.path, time p = os.path moddir = p.dirname(sys.modules[__name__].__file__) # we're in __init__, so moddir is the dir containing capaweb/ thisprog = p.abspath(p.join(moddir, 'capa_scgi.py')) root = '/'.join(request.environ['SCRIPT_NAME'].split('/')[:-1]) request.redirect(root + '/') pid = os.fork() if pid == 0: raise SystemExit else: time.sleep(1) os.execl(thisprog, thisprog) -- |>|\/|< /--------------------------------------------------------------------------\ |David M. Cooke http://arbutus.physics.mcmaster.ca/dmc/ |cookedm@physics.mcmaster.ca