This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new cd40d3d6f09 branch-3.0: [bug](s3) fix S3 file system gets absolute path #44965 (#45199) cd40d3d6f09 is described below commit cd40d3d6f098579f77edd0b35c4d18ffbdfed1a0 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Dec 9 22:12:44 2024 +0800 branch-3.0: [bug](s3) fix S3 file system gets absolute path #44965 (#45199) Cherry-picked from #44965 Co-authored-by: Xujian Duan <50550370+darvend...@users.noreply.github.com> --- 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 61967a63e44..f6efa505332 100644 --- a/be/src/io/fs/s3_file_system.h +++ b/be/src/io/fs/s3_file_system.h @@ -121,7 +121,7 @@ protected: abs_path = path; } else { // path with no schema - abs_path = _root_path / path; + abs_path = _prefix / path; } return Status::OK(); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org