From 3b152ff3471603c876663242a62f30b81231189c Mon Sep 17 00:00:00 2001 From: wolke Date: Thu, 8 Jan 2026 17:19:21 +0800 Subject: [PATCH] fix(contact): update lit client to use port 10003 matching server --- samples/client/lit/contact/middleware/a2a.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/client/lit/contact/middleware/a2a.ts b/samples/client/lit/contact/middleware/a2a.ts index 74813d93..99e583b5 100644 --- a/samples/client/lit/contact/middleware/a2a.ts +++ b/samples/client/lit/contact/middleware/a2a.ts @@ -52,7 +52,7 @@ const createOrGetClient = async () => { if (!client) { // Create a client pointing to the agent's Agent Card URL. client = await A2AClient.fromCardUrl( - "http://localhost:10002/.well-known/agent-card.json", + "http://localhost:10003/.well-known/agent-card.json", { fetchImpl: fetchWithCustomHeader } ); }