From 15245c18b584e42523762b94fcc7284d483660a0 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Sat, 25 Jan 2025 03:19:50 +0100 Subject: [PATCH] fix: include whole request body in report --- src/client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/mod.rs b/src/client/mod.rs index 670b730..745870e 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -2215,7 +2215,7 @@ impl RustyPipeQuery { }) .collect(), ), - req_body: serde_json::to_string(body).ok(), + req_body: serde_json::to_string(&req_body).ok(), status: req_res.status.into(), resp_body: req_res.body, },