From ce52b67d62d5b809ee77702c3d139f316f45eab4 Mon Sep 17 00:00:00 2001 From: rabbitblood Date: Tue, 21 Apr 2026 11:17:54 -0700 Subject: [PATCH] fix(build): add missing fmt import to a2a_proxy.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build broken on main since d86b8fe — a2a_proxy.go uses fmt.Errorf() (8 call sites) but the import was dropped during an isSafeURL refactor merge. CI fails with "undefined: fmt" at lines 743-775. Co-Authored-By: Claude Opus 4.6 (1M context) --- workspace-server/internal/handlers/a2a_proxy.go | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace-server/internal/handlers/a2a_proxy.go b/workspace-server/internal/handlers/a2a_proxy.go index 6b9df237..fd6cd50f 100644 --- a/workspace-server/internal/handlers/a2a_proxy.go +++ b/workspace-server/internal/handlers/a2a_proxy.go @@ -6,6 +6,7 @@ import ( "database/sql" "encoding/json" "errors" + "fmt" "io" "log" "net"