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 de385e5 commit aea4450Copy full SHA for aea4450
sdk/service_bus/src/event_hub/mod.rs
@@ -64,7 +64,7 @@ fn peek_lock_prepare(
64
let sas = generate_signature(policy_name, signing_key, &url.as_str(), duration);
65
debug!("sas == {}", sas);
66
67
- let request = hyper::Request::post(url.into_string())
+ let request = hyper::Request::post(Into::<String>::into(url))
68
.header(header::AUTHORIZATION, sas)
69
.header(header::CONTENT_LENGTH, 0)
70
.body(Body::empty())?;
0 commit comments