Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backend/services/agent_version_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def publish_version_impl(
'status': STATUS_RELEASED,
'is_a2a': publish_as_a2a,
'created_by': user_id,
'updated_by': user_id,

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

添加 updated_by 字段到版本发布记录是合理的。但请确认 insert_version 函数是否已支持 updated_by 字段——如果数据库表或 ORM 模型中没有这个列,会导致插入失败。

}
Comment on lines 128 to 132
version_id = insert_version(version_data)

Expand Down
Loading