change async to series

no real gain from parallel, series might reduce the cpu load if it finds the doc early
This commit is contained in:
Henry Oswald 2014-11-26 21:53:57 +00:00
parent 5e570d52a0
commit ca8a21c425

View file

@ -19,7 +19,7 @@ module.exports = ProjectRootDocManager =
return cb(doc?._id)
else
return cb()
async.parallel jobs, (root_doc_id)->
async.series jobs, (root_doc_id)->
if root_doc_id?
ProjectEntityHandler.setRootDoc project_id, root_doc_id, callback
else