This is an automated email from the ASF dual-hosted git repository.

adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git


The following commit(s) were added to refs/heads/master by this push:
     new 9c6d389c9a9 HDDS-15932. Remove usage of internal AWS S3 SDK API in 
S3KeyGenerator (#10835)
9c6d389c9a9 is described below

commit 9c6d389c9a9e4da3e5725b31f187dbdd17d25e67
Author: Eric C. Ho <[email protected]>
AuthorDate: Sun Jul 26 03:29:32 2026 +0800

    HDDS-15932. Remove usage of internal AWS S3 SDK API in S3KeyGenerator 
(#10835)
---
 .../src/main/java/org/apache/hadoop/ozone/freon/S3KeyGenerator.java    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/hadoop-ozone/freon/src/main/java/org/apache/hadoop/ozone/freon/S3KeyGenerator.java
 
b/hadoop-ozone/freon/src/main/java/org/apache/hadoop/ozone/freon/S3KeyGenerator.java
index 0c43923f51a..05bb7510019 100644
--- 
a/hadoop-ozone/freon/src/main/java/org/apache/hadoop/ozone/freon/S3KeyGenerator.java
+++ 
b/hadoop-ozone/freon/src/main/java/org/apache/hadoop/ozone/freon/S3KeyGenerator.java
@@ -17,7 +17,6 @@
 
 package org.apache.hadoop.ozone.freon;
 
-import static 
com.amazonaws.services.s3.internal.SkipMd5CheckStrategy.DISABLE_PUT_OBJECT_MD5_VALIDATION_PROPERTY;
 import static org.apache.hadoop.ozone.OzoneConsts.OM_MULTIPART_MIN_SIZE;
 
 import com.amazonaws.services.s3.model.CompleteMultipartUploadRequest;
@@ -101,7 +100,7 @@ public Void call() throws Exception {
 
     timer = getMetrics().timer("key-create");
 
-    System.setProperty(DISABLE_PUT_OBJECT_MD5_VALIDATION_PROPERTY, "true");
+    
System.setProperty("com.amazonaws.services.s3.disablePutObjectMD5Validation", 
"true");
     runTests(this::createKey);
 
     return null;


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

Reply via email to