On 5/31/07, voltron <[EMAIL PROTECTED]> wrote: > Thats it. I would not advice you to use --reload of you are using > Debian though, it can“t be stopped properly, things like kill <process > number> don't work, the only thing that did was kill -9, which is > actually taboo
It's not actually evil, it's just better to try a regular kill first. The only critical issue is its effect on persistent files: data files, temporary files, database entries, the PID file. Undeleted temporary files are just a nuisance. Partially-written data files or partially-completed database transactions could cause data corruption. But the program may be in a non-interruptable kernel operation and not responding to other signals. The "D" stat in the ps listing means uninterruptable sleep, which some blocking I/O operations do. I couldn't get --reload to work properly on Gentoo, but it is working on Ubuntu. -- Mike Orr <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
