未验证 提交 39d2c89c 编写于 作者: G gongweibao 提交者: GitHub

tmp fix (#42508)

上级 2b5771c4
......@@ -847,8 +847,9 @@ class HDFSClient(FS):
if self.is_file(fs_path):
return self._try_download(fs_path, local_path)
# download dir
_, all_filenames = self.ls_dir(fs_path)
all_files = [fs_path + i for i in all_filenames]
dirs, all_filenames = self.ls_dir(fs_path)
all_files = [fs_path + "/" + i for i in all_filenames]
all_files.extend([fs_path + "/" + i for i in dirs])
procs = []
for i in range(multi_processes):
process_datas = self._split_files(all_files, i, multi_processes)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册