This is an automated email from the ASF dual-hosted git repository.
zihaoxiang 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 94b357fa9a [Fix-17406]Fix OssStorageOperator missing init method
causing ossclient to be null (#17438)
94b357fa9a is described below
commit 94b357fa9a65a7938a88de68c066026926840ad5
Author: Zzih96 <[email protected]>
AuthorDate: Thu Aug 21 16:21:53 2025 +0800
[Fix-17406]Fix OssStorageOperator missing init method causing ossclient to
be null (#17438)
---
.../apache/dolphinscheduler/plugin/storage/oss/OssStorageOperator.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/dolphinscheduler-storage-plugin/dolphinscheduler-storage-oss/src/main/java/org/apache/dolphinscheduler/plugin/storage/oss/OssStorageOperator.java
b/dolphinscheduler-storage-plugin/dolphinscheduler-storage-oss/src/main/java/org/apache/dolphinscheduler/plugin/storage/oss/OssStorageOperator.java
index c243c8ac5a..e551e5d09f 100644
---
a/dolphinscheduler-storage-plugin/dolphinscheduler-storage-oss/src/main/java/org/apache/dolphinscheduler/plugin/storage/oss/OssStorageOperator.java
+++
b/dolphinscheduler-storage-plugin/dolphinscheduler-storage-oss/src/main/java/org/apache/dolphinscheduler/plugin/storage/oss/OssStorageOperator.java
@@ -78,6 +78,7 @@ public class OssStorageOperator extends
AbstractStorageOperator implements Close
public OssStorageOperator(String resourceBaseAbsolutePath) {
super(resourceBaseAbsolutePath);
+ init();
}
private void init() {