This is an automated email from the ASF dual-hosted git repository.
weiraowang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 2314b67870 [Fix-14715] [Resource Center] Modify default fs of local
storage plugin (#14716)
2314b67870 is described below
commit 2314b67870ef8523f7b783dd21f23ee6acbaca16
Author: Aaron Wang <[email protected]>
AuthorDate: Thu Aug 10 19:15:09 2023 +0800
[Fix-14715] [Resource Center] Modify default fs of local storage plugin
(#14716)
Co-authored-by: xiangzihao <[email protected]>
---
.../plugin/storage/hdfs/LocalStorageOperatorFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dolphinscheduler-storage-plugin/dolphinscheduler-storage-hdfs/src/main/java/org/apache/dolphinscheduler/plugin/storage/hdfs/LocalStorageOperatorFactory.java
b/dolphinscheduler-storage-plugin/dolphinscheduler-storage-hdfs/src/main/java/org/apache/dolphinscheduler/plugin/storage/hdfs/LocalStorageOperatorFactory.java
index c90e347e88..1e244b2137 100644
---
a/dolphinscheduler-storage-plugin/dolphinscheduler-storage-hdfs/src/main/java/org/apache/dolphinscheduler/plugin/storage/hdfs/LocalStorageOperatorFactory.java
+++
b/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() {