mehakmeet commented on a change in pull request #3260:
URL: https://github.com/apache/hadoop/pull/3260#discussion_r684183200



##########
File path: 
hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/S3AFileSystem.java
##########
@@ -822,10 +854,21 @@ private void bindAWSClient(URI name, boolean dtEnabled) 
throws IOException {
         S3_CLIENT_FACTORY_IMPL, DEFAULT_S3_CLIENT_FACTORY_IMPL,
         S3ClientFactory.class);
 
+    // If there's no endpoint set, then use the default for bucket or 
AccessPoint. Overriding is
+    // useful when using FIPS or DualStack S3 endpoints.
+    String endpoint = conf.getTrimmed(ENDPOINT, "");
+    if (endpoint.isEmpty()) {

Review comment:
       So, if the endpoint isn't set/empty, then we set it to the Accesspoint 
endpoint, but if the endpoint is set, we set it to empty? 
   Maybe set endpoint to Accesspoint endpoint if Accesspoint is set in both 
cases?
   Maybe I got it totally wrong, please, correct me, if this isn't what we're 
doing.




-- 
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: common-issues-unsubscr...@hadoop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to