This is an automated email from the ASF dual-hosted git repository.
reschke pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to refs/heads/trunk by this push:
new 226cd90ea4 OAK-11760: remove dead code in AzureSegmentStoreV8 (#2333)
226cd90ea4 is described below
commit 226cd90ea4f835cc3f6ca6848314e2c820dba5e7
Author: Julian Reschke <[email protected]>
AuthorDate: Fri Jun 13 12:17:31 2025 +0200
OAK-11760: remove dead code in AzureSegmentStoreV8 (#2333)
---
.../apache/jackrabbit/oak/segment/azure/v8/AzureSegmentStoreV8.java | 6 ------
1 file changed, 6 deletions(-)
diff --git
a/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/v8/AzureSegmentStoreV8.java
b/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/v8/AzureSegmentStoreV8.java
index 2e2bf2baf0..1f110f9db8 100644
---
a/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/v8/AzureSegmentStoreV8.java
+++
b/oak-segment-azure/src/main/java/org/apache/jackrabbit/oak/segment/azure/v8/AzureSegmentStoreV8.java
@@ -18,8 +18,6 @@
*/
package org.apache.jackrabbit.oak.segment.azure.v8;
-import com.azure.storage.blob.BlobContainerClient;
-import com.azure.storage.blob.BlobContainerClientBuilder;
import com.microsoft.azure.storage.CloudStorageAccount;
import com.microsoft.azure.storage.LocationMode;
import com.microsoft.azure.storage.StorageCredentials;
@@ -67,10 +65,6 @@ public class AzureSegmentStoreV8 {
connectionString.append("BlobEndpoint=").append(configuration.blobEndpoint()).append(';');
}
- BlobContainerClient blobContainerClient = new
BlobContainerClientBuilder()
- .containerName(configuration.containerName())
- .connectionString(connectionString.toString()).buildClient();
-
return createAzurePersistence(connectionString.toString(),
configuration, true);
}