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

morningman 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 6abec887f03 [fix](compile) fix compile issue introduced from #35397
6abec887f03 is described below

commit 6abec887f031218f9dea8ce472f38ae05c76fded
Author: morningman <morning...@163.com>
AuthorDate: Thu May 30 12:17:59 2024 +0800

    [fix](compile) fix compile issue introduced from #35397
---
 be/src/io/fs/benchmark/s3_benchmark.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/io/fs/benchmark/s3_benchmark.hpp 
b/be/src/io/fs/benchmark/s3_benchmark.hpp
index 417fe81b80a..8ddd4c68010 100644
--- a/be/src/io/fs/benchmark/s3_benchmark.hpp
+++ b/be/src/io/fs/benchmark/s3_benchmark.hpp
@@ -42,7 +42,7 @@ public:
         S3Conf s3_conf;
         RETURN_IF_ERROR(
                 S3ClientFactory::convert_properties_to_s3_conf(_conf_map, 
s3_uri, &s3_conf));
-        return io::S3FileSystem::create(std::move(s3_conf), "", fs);
+        return io::S3FileSystem::create(std::move(s3_conf), "", nullptr, fs);
     }
 };
 
@@ -70,7 +70,7 @@ public:
         fd.path = file_path;
         RETURN_IF_ERROR(FileFactory::create_s3_reader(
                 _conf_map, fd, reader_opts, 
reinterpret_cast<std::shared_ptr<io::FileSystem>*>(&fs),
-                &reader));
+                &reader, nullptr));
         return read(state, reader);
     }
 };


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

Reply via email to