demobox commented on this pull request.
> @@ -679,7 +679,7 @@ public void downloadBlob(String container, String name,
> File destination, Execut
ListeningExecutorService listeningExecutor =
MoreExecutors.listeningDecorator(executor);
RandomAccessFile raf = null;
- File tempFile = new File(destination.getName() + "." +
UUID.randomUUID());
+ File tempFile = new File(destination + "." + UUID.randomUUID());
> we want to make the temporary file relative to destination
Ah, OK - thanks for explaining!
--
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/1035