We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0c597 commit a8faa5fCopy full SHA for a8faa5f
1 file changed
crates/wasi-tls/src/p3/host.rs
@@ -182,7 +182,7 @@ impl bindings::tls::client::HostConnectorWithStore for WasiTls {
182
server_name: String,
183
) -> wasmtime::Result<Result<(), Resource<Error>>> {
184
fn connect_err(msg: &'static str) -> BoxFutureTlStream {
185
- Box::pin(async move { Err(Error::msg(msg).into()) })
+ Box::pin(async move { Err(Error::msg(msg)) })
186
}
187
let (fut, connection) = accessor.with(
188
move |mut access| -> wasmtime::Result<(BoxFutureTlStream, _)> {
0 commit comments