> ++partNumber; > + BlobUploader b = > + new BlobUploader(mpu, partNumber, payload, parts); > + executor.execute(b); > + } > + executor.shutdown();
Instead of creating a new `ExecutorService` per `putBlob` request, we should take an optional one as an argument. This would allow callers to control the degree of parallelism with multiple `putBlob` calls. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/975/files/70ba6e0f5aa5c660cab27eb6a450ca7f1e435235#r67774299
