nozjkoitop commented on code in PR #15523:
URL: https://github.com/apache/druid/pull/15523#discussion_r1442901033


##########
extensions-core/azure-extensions/src/main/java/org/apache/druid/storage/azure/AzureUtils.java:
##########
@@ -40,11 +40,26 @@
 public class AzureUtils
 {
 
+  public static final String DEFAULT_AZURE_ENDPOINT_SUFFIX = 
"core.windows.net";
   @VisibleForTesting
   static final String AZURE_STORAGE_HOST_ADDRESS = "blob.core.windows.net";
+  public static final String DEFAULT_AZURE_BLOB_STORAGE_ENDPOINT_SUFFIX = 
"blob." + DEFAULT_AZURE_ENDPOINT_SUFFIX;
+  private final String blobStorageEndpointSuffix;
+
+  /**
+   * Creates an AzureUtils object with the blob storage endpoint suffix.
+   *
+   * @param blobStorageEndpointSuffix the blob storage endpoint, like 
<code>"blob.core.windows.net"</code>,
+   *                                  
<code>"blob.core.chinacloudapi.cn"</code> or
+   *                                  
<code>"blob.core.usgovcloudapi.net</code>"
+   */
+  public AzureUtils(String blobStorageEndpointSuffix)

Review Comment:
   done



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to