Can you provide minimal code to reproduce this problem? I could try and build it from your example, but don't have time, if you gave me a snippet I could just run, I would, and could see what your issue is.
On Mon, Jun 29, 2015 at 10:37 AM, Matt <[email protected]> wrote: > You've exhausted the threadpool. Try setting the UV_THREADPOOL_SIZE env var > higher and see if you can spawn more. Child processes don't go through the thread pool. The spawn is synchronous, the IPC (if any) on stdio is async, uses pipes, and goes through the epoll() event loop. -- http://StrongLoop.com makes it easy to develop APIs in Node, plus get DevOps capabilities like monitoring, debugging and clustering. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/CACmrRmRWNiEBHaOf1csP9CKixbyi_ub7KF9BY53CW%2BhqRc%2BUvw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
