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 b910142 commit e581b20Copy full SHA for e581b20
sdk/messaging_servicebus/src/service_bus/topic_client.rs
@@ -47,6 +47,9 @@ impl TopicClient {
47
P: Into<String>,
48
K: Into<Secret>,
49
{
50
+ // NOTE: This is to account for the azure_core::auth::hmac_sha256 assumption
51
+ // that the key needs to be base64 decoded.
52
+ let signing_key = azure_core::base64::encode(signing_key.into().secret());
53
Ok(Self {
54
http_client,
55
namespace: namespace.into(),
0 commit comments