We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 418a638 commit 0d76f35Copy full SHA for 0d76f35
crates/service/src/middleware/attestation.rs
@@ -66,7 +66,9 @@ pub async fn attestation_middleware(
66
attestation,
67
})?;
68
69
- Ok(Response::new(response.into()))
+ let mut response = Response::new(response.into());
70
+ *response.headers_mut() = parts.headers;
71
+ Ok(response)
72
}
73
74
#[derive(thiserror::Error, Debug)]
0 commit comments