This is an automated email from the ASF dual-hosted git repository.
zhongjiajie 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 764a24384f [python] add import SageMaker task (#11121)
764a24384f is described below
commit 764a24384fe8be566407d2816d2f965105b578d6
Author: JieguangZhou <[email protected]>
AuthorDate: Mon Jul 25 15:46:36 2022 +0800
[python] add import SageMaker task (#11121)
---
.../pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py
b/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py
index dd46c912df..d49a1d394c 100644
---
a/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py
+++
b/dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/__init__.py
@@ -25,6 +25,7 @@ from pydolphinscheduler.tasks.http import Http
from pydolphinscheduler.tasks.map_reduce import MR
from pydolphinscheduler.tasks.procedure import Procedure
from pydolphinscheduler.tasks.python import Python
+from pydolphinscheduler.tasks.sagemaker import SageMaker
from pydolphinscheduler.tasks.shell import Shell
from pydolphinscheduler.tasks.spark import Spark
from pydolphinscheduler.tasks.sql import Sql
@@ -45,4 +46,5 @@ __all__ = [
"Sql",
"SubProcess",
"Switch",
+ "SageMaker",
]