ak58588 commented on this pull request.
> + request.replaceHeader("x-ms-blob-content-type", contentType);
+ }
+
+ if (options != null) {
+ request.headers(options.buildRequestHeaders());
+ }
+
+
+ if (method.equals("PUT")) {
+ request.replaceHeader("x-ms-blob-type", "BlockBlob");
+ }
+
+ HttpRequest req = request.build();
+
+ return req;
+ }
Done!
--
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/1270#discussion_r253473124