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

yiguolei pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 02feb16530e branch-2.1: [bug](s3) fix S3 file system gets absolute 
path #44965 (#45529)
02feb16530e is described below

commit 02feb16530e1024fcf9296a6046522e9a65008ec
Author: Xujian Duan <50550370+darvend...@users.noreply.github.com>
AuthorDate: Wed Dec 18 22:29:24 2024 +0800

    branch-2.1: [bug](s3) fix S3 file system gets absolute path #44965 (#45529)
    
    Cherry-picked from https://github.com/apache/doris/pull/44965
---
 be/src/io/fs/s3_file_system.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/io/fs/s3_file_system.h b/be/src/io/fs/s3_file_system.h
index 2346d1b2f43..2a2962de525 100644
--- a/be/src/io/fs/s3_file_system.h
+++ b/be/src/io/fs/s3_file_system.h
@@ -99,7 +99,7 @@ protected:
             abs_path = path;
         } else {
             // path with no schema
-            abs_path = _root_path / path;
+            abs_path = _s3_conf.prefix / path;
         }
         return Status::OK();
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to