kishorebattula commented on this pull request.


>        super(backend, backendType);
       this.consistencyModel = checkNotNull(consistencyModel, 
"consistencyModel");
       this.blobStore = checkNotNull(blobStore, "blobStore");
       this.utils = checkNotNull(utils, "utils");
       this.blobRequestSigner = checkNotNull(blobRequestSigner, 
"blobRequestSigner");
+      Binding<AsyncBlobStore> asyncBlobStoreBinding = 
injector.getExistingBinding(Key.get(AsyncBlobStore.class));
+      if (asyncBlobStoreBinding != null) {
+         asyncBlobStore = asyncBlobStoreBinding.getProvider().get();
+      } else {
+         asyncBlobStore = null;
+      }

@nacx Can you point me to the classes in compute so that I can follow similar 
pattern here

-- 
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/1114#discussion_r124440478

Reply via email to