danielcweeks commented on code in PR #11992:
URL: https://github.com/apache/iceberg/pull/11992#discussion_r1942062420
##########
aws/src/main/java/org/apache/iceberg/aws/s3/VendedCredentialsProvider.java:
##########
@@ -74,7 +75,11 @@ private RESTClient httpClient() {
if (null == client) {
synchronized (this) {
if (null == client) {
- client =
HTTPClient.builder(properties).uri(properties.get(URI)).build();
+ client =
+ HTTPClient.builder(properties)
+ .uri(properties.get(URI))
+ .withAuthSession(AuthSession.EMPTY)
Review Comment:
Same here? The default should not be EMPTY, that just cases it to fall
through.
--
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]