feat(headers): add optional header masking feature to outbound request (#1320)

This commit is contained in:
Nishant Joshi
2023-06-05 13:10:14 +05:30
committed by GitHub
parent b96652507a
commit fc6acd04cb
43 changed files with 938 additions and 527 deletions

View File

@ -575,7 +575,7 @@ pub async fn trigger_webhook_to_merchant<W: api::OutgoingWebhookType>(
)];
if let Some(signature) = outgoing_webhooks_signature {
header.push((headers::X_WEBHOOK_SIGNATURE.to_string(), signature))
header.push((headers::X_WEBHOOK_SIGNATURE.to_string(), signature.into()))
}
let request = services::RequestBuilder::new()