Skip to content

Commit 55d2566

Browse files
committed
fix: endpoint value
1 parent 9be84dd commit 55d2566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

veadk/cloud/cloud_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def _get_a2a_client(self) -> A2AClient:
9999
if self.use_agent_card:
100100
async with self.httpx_client as httpx_client:
101101
resolver = A2ACardResolver(
102-
httpx_client=httpx_client, base_url=self.endpoint
102+
httpx_client=httpx_client, base_url=self.vefaas_endpoint
103103
)
104104

105105
final_agent_card_to_use: AgentCard | None = None
@@ -112,7 +112,7 @@ async def _get_a2a_client(self) -> A2AClient:
112112
httpx_client=self.httpx_client, agent_card=final_agent_card_to_use
113113
)
114114
else:
115-
return A2AClient(httpx_client=self.httpx_client, url=self.endpoint)
115+
return A2AClient(httpx_client=self.httpx_client, url=self.vefaas_endpoint)
116116

117117
def update_self(
118118
self,

0 commit comments

Comments
 (0)