Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ private void checkPath(final String path) {
"系统编程错误, 该异常代表系统编程错误, 请联系DataX开发团队!.");
}

for (final String each : StringUtils.split(".")) {
for (final String each : StringUtils.split(path, ".")) {
if (StringUtils.isBlank(each)) {
throw new IllegalArgumentException(String.format(
"系统编程错误, 路径[%s]不合法, 路径层次之间不能出现空白字符 .", path));
Expand Down