fix: include whole request body in report

This commit is contained in:
ThetaDev 2025-01-25 03:19:50 +01:00
parent 9c67f8f85b
commit 15245c18b5
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6

View file

@ -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,
},