diff --git a/api/services/app_dsl_service.py b/api/services/app_dsl_service.py index 031cadcdc4..8bd786579f 100644 --- a/api/services/app_dsl_service.py +++ b/api/services/app_dsl_service.py @@ -607,6 +607,9 @@ class AppDslService: # clear the webhook_url node_data["webhook_url"] = "" node_data["webhook_debug_url"] = "" + if data_type == NodeType.TRIGGER_PLUGIN.value: + # clear the subscription_id + node_data["subscription_id"] = "" export_data["workflow"] = workflow_dict dependencies = cls._extract_dependencies_from_workflow(workflow)