zachjsh commented on code in PR #15630: URL: https://github.com/apache/druid/pull/15630#discussion_r1464067299
########## extensions-core/azure-extensions/src/main/java/org/apache/druid/storage/azure/AzureStorage.java: ########## @@ -62,12 +62,15 @@ public class AzureStorage private static final Logger log = new Logger(AzureStorage.class); private final AzureClientFactory azureClientFactory; + private String defaultStorageAccount; public AzureStorage( - AzureClientFactory azureClientFactory + AzureClientFactory azureClientFactory, + String defaultStorageAccount Review Comment: Do we need this default storageAccount, or can we just always be explicit about what storageAccount we are using on each method call that this class provides? -- 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]
