clean up snapshots serially to not trigger snapshot cleanup bug

This commit is contained in:
spalger
2015-10-26 16:05:18 -05:00
parent b519e079a9
commit 236cd91297

View File

@ -122,13 +122,13 @@ module.exports = {
repository: repo, repository: repo,
snapshot: snapshot snapshot: snapshot
}); });
}) }, {concurrency: 1})
.then(function () { .then(function () {
return client.snapshot.deleteRepository({ return client.snapshot.deleteRepository({
repository: repo repository: repo
}); });
}); });
}) }, {concurrency: 1})
]); ]);
}; };