fix: include whole request body in report

This commit is contained in:
ThetaDev 2025-01-25 03:19:50 +01:00
parent 5bf3576c7e
commit ed23a8392e

View file

@ -2215,7 +2215,7 @@ impl RustyPipeQuery {
}) })
.collect(), .collect(),
), ),
req_body: serde_json::to_string(body).ok(), req_body: serde_json::to_string(&req_body).ok(),
status: req_res.status.into(), status: req_res.status.into(),
resp_body: req_res.body, resp_body: req_res.body,
}, },