From 236cd91297845a123359a6353b2766b5774b9393 Mon Sep 17 00:00:00 2001 From: spalger Date: Mon, 26 Oct 2015 16:05:18 -0500 Subject: [PATCH] clean up snapshots serially to not trigger snapshot cleanup bug --- test/integration/yaml_suite/client_manager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/yaml_suite/client_manager.js b/test/integration/yaml_suite/client_manager.js index 7959ea1c4..ffc37f25c 100644 --- a/test/integration/yaml_suite/client_manager.js +++ b/test/integration/yaml_suite/client_manager.js @@ -122,13 +122,13 @@ module.exports = { repository: repo, snapshot: snapshot }); - }) + }, {concurrency: 1}) .then(function () { return client.snapshot.deleteRepository({ repository: repo }); }); - }) + }, {concurrency: 1}) ]); };