mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-11 21:01:04 +01:00
It's ok not being able to find a .well-known response.
This commit is contained in:
parent
2a100412fa
commit
7990822f72
1 changed files with 2 additions and 1 deletions
|
@ -506,7 +506,8 @@ async fn request_well_known(destination: &str) -> Option<String> {
|
||||||
.await;
|
.await;
|
||||||
debug!("Got well known response");
|
debug!("Got well known response");
|
||||||
if let Err(e) = &response {
|
if let Err(e) = &response {
|
||||||
error!("Well known error: {e:?}");
|
debug!("Well known error: {e:?}");
|
||||||
|
return None;
|
||||||
}
|
}
|
||||||
let text = response.ok()?.text().await;
|
let text = response.ok()?.text().await;
|
||||||
debug!("Got well known response text");
|
debug!("Got well known response text");
|
||||||
|
|
Loading…
Reference in a new issue