mapSeries -> eachSeries

This commit is contained in:
James Allen 2016-09-09 15:28:27 +01:00
parent 2d82d56f93
commit 6ca48523d9

View file

@ -39,7 +39,7 @@ module.exports = UpdateManager =
return callback(error) if error?
if updates.length == 0
return callback()
async.mapSeries updates,
async.eachSeries updates,
(update, cb) -> UpdateManager.applyUpdate project_id, doc_id, update, cb
callback