From dba4505bfadce9a397f348e739218ee36f2b41ff Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 18:59:11 +0000 Subject: [PATCH 1/2] Initial plan From b521dbc8eacb1afddbe2882385eeda8d6b615d1e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 19:00:05 +0000 Subject: [PATCH 2/2] fix: remove unused struct fields in sdk_logging_test.go to fix lint Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com> --- internal/server/sdk_logging_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/internal/server/sdk_logging_test.go b/internal/server/sdk_logging_test.go index dabf529d..6477a045 100644 --- a/internal/server/sdk_logging_test.go +++ b/internal/server/sdk_logging_test.go @@ -48,10 +48,8 @@ func makeJSONRPCRequest(method string, id interface{}) []byte { // handlerCapture is a helper to track what an inner handler received. type handlerCapture struct { - called bool - body []byte - statusCode int - responseBody []byte + called bool + body []byte } // makeInnerHandler creates an http.Handler that records the request body and returns the given response.