|
@@ -231,7 +231,8 @@ public class EtlServiceImpl implements EtlService {
|
|
|
File localFile = new File(localFilePath);
|
|
|
if (!localFile.exists()) {
|
|
|
if (!localFile.mkdirs()) {
|
|
|
- throw new CommonException(ExceptionEnum.SYSTEM_ERROR, "mkdir " + localFilePath + " error!");
|
|
|
+ // throw new CommonException(ExceptionEnum.SYSTEM_ERROR, "mkdir " + localFilePath + " error!");
|
|
|
+ log.warn("mkdir {} failed", localFilePath);
|
|
|
}
|
|
|
}
|
|
|
|