You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The semantics of process.nextTick have changed in Node v0.11.x. Recursively setting nextTick callbacks will block any I/O from happening. In Node v0.10.x this is not the case as nextTick defers to allow some I/O to be done every so often.
The semantics of process.nextTick have changed in Node v0.11.x. Recursively setting nextTick callbacks will block any I/O from happening. In Node v0.10.x this is not the case as nextTick defers to allow some I/O to be done every so often.
See the note at the end of the v0.11.10 process.nextTick() documentation. See also v0.10.24 process.maxTickDepth. maxTickDepth is no longer available in Node v0.11.10.
lcd relies on the v0.10.x semantics here. Replacing process.nextTick(...) with setImmediate(...) should resolve the issue.
The text was updated successfully, but these errors were encountered: