--
You received this message because you are subscribed to the Google Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com.
To unsubscribe from this group, send email to nodejs+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
Sounds like it's segfaulting - would be nice to get a stacktrace or coredump.
When starting with Node I was surprised to read that the default
behavior for an uncaught exception was to print a stack trace and
exit.
It can be helpful to catch any Exceptions you might have missed with
something like:
xxx
process.on('uncaughtException', function (err) {
console.log('Caught exception: ' + err);
});
xxx
via http://nodejs.org/docs/v0.4.2/api/all.html#event_uncaughtException_
On Wed, Mar 9, 2011 at 6:55 PM, Marak Squires <marak....@gmail.com> wrote:
> Forever can restart your process if it fails. If your app crashes after 10
> minutes, Forever should restart it every 10 minutes. Is Forever not
> restarting your app?