2009/1/30 Kevin Baker <[email protected]> > We have a production server with "--reload" flag off. > > We would like to have it reload when we update our code, rather than doing > a stop start. > > Is there a way to signal the running pylons process to do a reload? >
The reloader is simply a monitoring process that restarts the subprocess when it dies, plus a thread that polls all the files for changes and exits the process when it sees a change. A possible alternative is to use --monitor, which uses that monitoring process, and then exit yourself when you want to reload. -- Ian Bicking | http://blog.ianbicking.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
