Browse Source
Remove wasi-http "checking authority" log (#7607)
Signed-off-by: itowlson <ivan.towlson@fermyon.com>
pull/7608/head
itowlson
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
crates/wasi-http/src/types_impl.rs
|
|
@ -490,7 +490,6 @@ impl<T: WasiHttpView> crate::bindings::http::types::HostOutgoingRequest for T { |
|
|
|
let req = self.table().get_mut(&request)?; |
|
|
|
|
|
|
|
if let Some(s) = authority.as_ref() { |
|
|
|
println!("checking authority {s}"); |
|
|
|
let auth = match http::uri::Authority::from_str(s.as_str()) { |
|
|
|
Ok(auth) => auth, |
|
|
|
Err(_) => return Ok(Err(())), |
|
|
|