From e4a968d2ae9765828af80d2893165cb0f2f7ae2d Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 22 Nov 2025 14:46:17 -0600 Subject: [PATCH] fix error message --- internal/processing/http-request-encode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/processing/http-request-encode.go b/internal/processing/http-request-encode.go index 8dcd0fb..266cbdd 100644 --- a/internal/processing/http-request-encode.go +++ b/internal/processing/http-request-encode.go @@ -15,7 +15,7 @@ func (hre *HTTPRequestEncode) Process(ctx context.Context, payload any) (any, er payloadRequest, ok := payload.(*http.Request) if !ok { - return nil, fmt.Errorf("http.request.encode processor only accepts an OSCMessage") + return nil, fmt.Errorf("http.request.encode processor only accepts an http.Request") } bytes, err := io.ReadAll(payloadRequest.Body)