Skip to content

Commit 36310b1

Browse files
committed
fix: [Tool] Trigger triggered execution tool, the execution details record the startup parameters
1 parent 4aee2b4 commit 36310b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/trigger/handler/impl/task/tool_task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def execute(self, trigger_task, **kwargs):
165165
QuerySet(ToolRecord).filter(id=task_record_id).update(
166166
state=State.SUCCESS,
167167
run_time=time.time() - start_time,
168-
meta={'input': init_params_default_value | parameters, 'output': result_dict}
168+
meta={'input': parameters, 'output': result_dict}
169169
)
170170
except Exception as e:
171171
maxkb_logger.error(f"Tool execution error: {traceback.format_exc()}")

0 commit comments

Comments
 (0)