From 294e7a1021b201e94586222e9fc91977e4dac974 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Fri, 9 Jan 2026 15:15:38 +0800 Subject: [PATCH] fix destPath param --- .../app/module/collection/client/datax_client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runtime/datamate-python/app/module/collection/client/datax_client.py b/runtime/datamate-python/app/module/collection/client/datax_client.py index 7b03e8c..c8a7f56 100644 --- a/runtime/datamate-python/app/module/collection/client/datax_client.py +++ b/runtime/datamate-python/app/module/collection/client/datax_client.py @@ -65,6 +65,10 @@ class DataxClient: dest_parameter = { "destPath": target_path } + elif template.target_type == "s3writer" or template.target_type == "glusterfswriter" or template.target_type == "localwriter": + dest_parameter = { + "destPath": target_path + } writer_parameter = { **(task_config.parameter if task_config.parameter else {}), **(task_config.writer if task_config.writer else {}),