nastra commented on code in PR #11577: URL: https://github.com/apache/iceberg/pull/11577#discussion_r1867409678
########## azure/src/main/java/org/apache/iceberg/azure/AzureProperties.java: ########## @@ -67,6 +83,16 @@ public AzureProperties(Map<String, String> properties) { if (properties.containsKey(ADLS_WRITE_BLOCK_SIZE)) { this.adlsWriteBlockSize = Long.parseLong(properties.get(ADLS_WRITE_BLOCK_SIZE)); } + this.refreshCredentialsEndpoint = properties.get(REFRESH_CREDENTIALS_ENDPOINT); + this.refreshCredentialsEnabled = + PropertyUtil.propertyAsBoolean(properties, REFRESH_CREDENTIALS_ENABLED, true); + Map<String, String> credentialProviderProperties = Maps.newHashMap(properties); Review Comment: this can be moved into the `if` statement -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org