From fafa63e689bef90f2554dbac7e3ead94e8407fe3 Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Fri, 22 Mar 2024 09:17:35 +0100 Subject: [PATCH] x --- pkg/oonimkall/httpx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/oonimkall/httpx.go b/pkg/oonimkall/httpx.go index 005df5ce4..bc5d6f33c 100644 --- a/pkg/oonimkall/httpx.go +++ b/pkg/oonimkall/httpx.go @@ -66,7 +66,7 @@ func (sess *Session) httpDoLocked(ctx *Context, jreq *HTTPRequest) (*HTTPRespons defer resp.Body.Close() if resp.StatusCode != 200 { - return nil, errors.New("xoonirun: HTTP request failed") + return nil, errors.New("httpx: HTTP request failed") } rawResp, err := netxlite.ReadAllContext(ctx.ctx, resp.Body)