This commit is contained in:
Yeuoly
2025-10-18 19:41:53 +08:00
parent 6d09330f98
commit 5d6b9b0cb1
10 changed files with 38 additions and 35 deletions

View File

@ -110,9 +110,8 @@ class WebhookTriggerDebugEventPoller(TriggerDebugEventPoller):
webhook_data = payload.get("webhook_data", {})
workflow_inputs = WebhookService.build_workflow_inputs(webhook_data)
workflow_args = {
workflow_args: Mapping[str, Any] = {
"inputs": workflow_inputs or {},
"query": "",
"files": [],
}
return TriggerDebugEvent(workflow_args=workflow_args, node_id=self.node_id)