Browse Source

[Fix-14715] [Resource Center] Modify default fs of local storage plugin (#14716)

Co-authored-by: xiangzihao <460888207@qq.com>
3.2.1-prepare
Aaron Wang 1 year ago committed by GitHub
parent
commit
2314b67870
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-storage-plugin/dolphinscheduler-storage-hdfs/src/main/java/org/apache/dolphinscheduler/plugin/storage/hdfs/LocalStorageOperatorFactory.java

2
dolphinscheduler-storage-plugin/dolphinscheduler-storage-hdfs/src/main/java/org/apache/dolphinscheduler/plugin/storage/hdfs/LocalStorageOperatorFactory.java

@ -26,7 +26,7 @@ import com.google.auto.service.AutoService;
@AutoService(StorageOperateFactory.class)
public class LocalStorageOperatorFactory implements StorageOperateFactory {
private static final String LOCAL_DEFAULT_FS = "file:///";
private static final String LOCAL_DEFAULT_FS = "file:/";
@Override
public StorageOperate createStorageOperate() {

Loading…
Cancel
Save