seropian commented on code in PR #2330: URL: https://github.com/apache/jackrabbit-oak/pull/2330#discussion_r2222349357
########## oak-blob-cloud-azure/src/main/java/org/apache/jackrabbit/oak/blob/cloud/azure/blobstorage/AzureDataStore.java: ########## @@ -41,11 +42,18 @@ public class AzureDataStore extends AbstractSharedCachingDataStore implements Co protected Properties properties; - private AzureBlobStoreBackend azureBlobStoreBackend; + private AbstractAzureBlobStoreBackend azureBlobStoreBackend; + + private final boolean useAzureSdkV12 = Boolean.getBoolean("blob.azure.v12.enabled"); @Override protected AbstractSharedBackend createBackend() { - azureBlobStoreBackend = new AzureBlobStoreBackend(); + if(useAzureSdkV12) { Review Comment: fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: oak-dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org