timer: don't reschedule timer bucket in a domain
authorGreg Brail <greg@apigee.com>
Wed, 29 Jan 2014 01:36:22 +0000 (17:36 -0800)
committerTimothy J Fontaine <tjfontaine@gmail.com>
Tue, 4 Mar 2014 01:46:49 +0000 (17:46 -0800)
commit6eb4d1d15ca8d2b82cf9db99d56633357ccc3320
treedb84aef134c16e36cffdfa1e60a0ef57f96d95cf
parent06453a94a7b06df30be0148e8b1d89932350f677
timer: don't reschedule timer bucket in a domain

If two timers run on the same tick, and the first timer uses a domain,
and then catches an exception and disposes of the domain, then the
second timer never runs. (And even if the first timer does not dispose
of the domain, the second timer could run under the wrong domain.)

This happens because timer.js uses "process.nextTick()" to schedule
continued processing of the timers for that tick. However, there was
an exception inside a domain, then "process.nextTick()" runs under
the domain of the first timer function, and will do nothing if
the domain has been disposed.

To avoid this, we temporarily save the value of "process.domain"
before calling nextTick so that it does not run inside any domain.
lib/timers.js
test/simple/test-domain-exit-dispose-again.js [new file with mode: 0644]