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 feb4b09cb39 [fix](hive)Spelling mistake of the word "failed" for 2.1 (#48193) feb4b09cb39 is described below commit feb4b09cb39e02aa7a607af9e40a70425f4362c8 Author: wuwenchi <wuwen...@selectdb.com> AuthorDate: Sat Feb 22 23:18:21 2025 +0800 [fix](hive)Spelling mistake of the word "failed" for 2.1 (#48193) --- be/src/io/fs/hdfs_file_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/io/fs/hdfs_file_system.cpp b/be/src/io/fs/hdfs_file_system.cpp index 09e60917865..7ae16ba10f9 100644 --- a/be/src/io/fs/hdfs_file_system.cpp +++ b/be/src/io/fs/hdfs_file_system.cpp @@ -385,7 +385,7 @@ Status HdfsFileSystemCache::_create_fs(const THdfsParams& hdfs_params, const std RETURN_IF_ERROR(create_hdfs_builder(hdfs_params, fs_name, &builder)); hdfsFS hdfs_fs = hdfsBuilderConnect(builder.get()); if (hdfs_fs == nullptr) { - return Status::IOError("faield to connect to hdfs {}: {}", fs_name, hdfs_error()); + return Status::IOError("failed to connect to hdfs {}: {}", fs_name, hdfs_error()); } *fs = hdfs_fs; return Status::OK(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org