On Mon, Sep 9, 2013 at 9:44 AM, Jules <[email protected]> wrote: > Since upgrading from 0.8 to 0.10, we're occasionally see these crashes in > production: > >> (node) warning: Recursive process.nextTick detected. This will break in >> the next version of node. Please use setImmediate for recursive deferral. >> (node) warning: Recursive process.nextTick detected. This will break in >> the next version of node. Please use setImmediate for recursive deferral. >> (node) warning: Recursive process.nextTick detected. This will break in >> the next version of node. Please use setImmediate for recursive deferral. >> (node) warning: Recursive process.nextTick detected. This will break in >> the next version of node. Please use setImmediate for recursive deferral. >> (node) warning: Recursive process.nextTick detected. This will break in >> the next version of node. Please use setImmediate for recursive deferral. >> RangeError: Maximum call stack size exceeded > > > > The weird thing is, courtesy of grep I'm confident that we do not utilize > process.nextTick anywhere; neither in our code nor in any modules we use. > > Any advice on figuring this one out? > > We're on node v0.10.12 > > Cheers, > Jules
You can start node with --trace-deprecation or --throw-deprecation to see where the warnings come from. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" 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/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
