This commit is contained in:
Alexey
2026-07-19 18:41:23 +03:00
parent 5b5cd952c8
commit a5216d77fb
3 changed files with 6 additions and 11 deletions
+1 -5
View File
@@ -39,11 +39,7 @@ impl TlsFetchContext {
let mut join = tokio::task::JoinSet::new();
for domain in self.domains.clone() {
let cache = self.cache.clone();
let host = tls_fetch_host_for_domain(
&self.mask_host,
&self.primary_domain,
&domain,
);
let host = tls_fetch_host_for_domain(&self.mask_host, &self.primary_domain, &domain);
let unix_sock = self.mask_unix_sock.clone();
let scope = self.tls_fetch_scope.clone();
let upstream = self.upstream_manager.clone();