We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f8089 commit caa3a72Copy full SHA for caa3a72
mcpgateway/services/tool_service.py
@@ -1954,7 +1954,6 @@ async def create_tool_from_a2a_agent(
1954
ToolNameConflictError: If a tool with the same name already exists.
1955
"""
1956
# Check if tool already exists for this agent
1957
- logger.info(f"testing Creating tool for A2A agent: {vars(agent)}")
1958
tool_name = f"a2a_{agent.slug}"
1959
existing_query = select(DbTool).where(DbTool.original_name == tool_name)
1960
existing_tool = db.execute(existing_query).scalar_one_or_none()
0 commit comments