From d2ac6c437ea023b097dcc3ad10b1562d5787805b Mon Sep 17 00:00:00 2001 From: Tom Meadows Date: Fri, 19 Sep 2025 15:49:40 +0100 Subject: [PATCH] Update sessionrecording/connect.go Co-authored-by: David Bond Signed-off-by: Tom Meadows --- sessionrecording/connect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sessionrecording/connect.go b/sessionrecording/connect.go index 9b6088013..97e2e517f 100644 --- a/sessionrecording/connect.go +++ b/sessionrecording/connect.go @@ -136,7 +136,7 @@ func SendEvent(ctx context.Context, ap netip.AddrPort, event io.Reader, dial net client := clientHTTP2(ctx, dial) if !supportsEvent(ctx, client, ap) { - return fmt.Errorf("recorder at address %q does not support `/v2/event` endpoint", ap.String()) + return fmt.Errorf(`recorder at address %q does not support "/v2/event" endpoint`, ap.String()) } req, err := http.NewRequestWithContext(ctx, "POST", fmt.Sprintf("http://%s/v2/event", ap.String()), event)