Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/http/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,9 @@ async fn resolve_dns_for_client_inner(
)
.await;
if auto_http3 {
Http3Cache::new().store_https_records(url, Some(dns_server), &https_records);
Http3Cache::new()
.store_https_records(url, Some(dns_server), &https_records)
.await;
}
return Ok(ClientDnsDiscovery {
dns_resolution: Some(DnsResolution {
Expand Down Expand Up @@ -426,7 +428,9 @@ async fn resolve_dns_for_client_inner(
)
.await;
if auto_http3 {
Http3Cache::new().store_https_records(url, None, &https_records);
Http3Cache::new()
.store_https_records(url, None, &https_records)
.await;
}
Ok(ClientDnsDiscovery {
dns_resolution: Some(DnsResolution {
Expand Down
Loading
Loading