From 55d2566bcebff2a7ba3c24765be1149d1ed0b738 Mon Sep 17 00:00:00 2001 From: "hanzhi.421" Date: Thu, 7 Aug 2025 10:51:52 +0800 Subject: [PATCH] fix: endpoint value --- veadk/cloud/cloud_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/veadk/cloud/cloud_app.py b/veadk/cloud/cloud_app.py index 78447025..3a3657c7 100644 --- a/veadk/cloud/cloud_app.py +++ b/veadk/cloud/cloud_app.py @@ -99,7 +99,7 @@ async def _get_a2a_client(self) -> A2AClient: if self.use_agent_card: async with self.httpx_client as httpx_client: resolver = A2ACardResolver( - httpx_client=httpx_client, base_url=self.endpoint + httpx_client=httpx_client, base_url=self.vefaas_endpoint ) final_agent_card_to_use: AgentCard | None = None @@ -112,7 +112,7 @@ async def _get_a2a_client(self) -> A2AClient: httpx_client=self.httpx_client, agent_card=final_agent_card_to_use ) else: - return A2AClient(httpx_client=self.httpx_client, url=self.endpoint) + return A2AClient(httpx_client=self.httpx_client, url=self.vefaas_endpoint) def update_self( self,