-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Description
What version of async are you using?
upgrade from v1.5.2 to v2.0.0
Which environment did the issue occur in (Node version/browser version)
linux node 6.2.2
What did you do? Please include a minimal reproducable case illustrating issue.
async.each(addresses, function(address){ async db query / or lookup via google api})
addresses has 8000 entries.
What did you expect to happen?
It worked in v1.5.2 but did not work anymore in v2.0.0
What was the actual result?
Error: Maximum call stack size exceeded
I tried to change for async.eachSeries ... but it did not help.
I tried to set --max-stack-size=100000 or --stack-size=100000 but I use it via gulp ... so I am not sure if gulp really passes this on to node.
I just downgraded to v1.5.2 for now.
Thought it may be of interest to you since 2.0.0 just came out ...