> + switch (md.getType()) {
> + case BLOB:
> + blobDelFuture = executorService.submit(new Callable<Void>() {
> + @Override
> + public Void call() {
> + blobStore.removeBlob(containerName, fullPath);
> + return null;
> + }
> + });
> + break;
> + case FOLDER:
> + if (options.isRecursive()) {
> + blobDelFuture = executorService.submit(new Callable<Void>() {
> + @Override
> + public Void call() {
> + blobStore.deleteDirectory(containerName, fullPath);
Good point. I'll add an to make executeOneIteration blocking.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/214/files#r10965015