diff --git a/deny.toml b/deny.toml index e87978a9e0..f949d401d1 100644 --- a/deny.toml +++ b/deny.toml @@ -75,7 +75,7 @@ skip = [ # https://github.com/hawkw/matchers/pull/4 { name = "regex-automata", version = "0.1" }, { name = "regex-syntax", version = "0.6" }, - # `trust-dns-proto`, depends on `idna` v0.2.3 while `url` depends on v0.5.0 + # `trust-dns-proto`, depends on `idna` v0.4.0 while `url` depends on v0.5.0 { name = "idna" }, # Some dependencies still use indexmap v1. { name = "indexmap", version = "1" }, diff --git a/linkerd/app/core/src/dns.rs b/linkerd/app/core/src/dns.rs index 7afc69e43d..51514003ca 100644 --- a/linkerd/app/core/src/dns.rs +++ b/linkerd/app/core/src/dns.rs @@ -24,7 +24,7 @@ impl Config { } impl ConfigureResolver for Config { - /// Modify a `trust-dns-resolver::config::ResolverOpts` to reflect + /// Modify a `hickory-resolver::config::ResolverOpts` to reflect /// the configured minimum and maximum DNS TTL values. fn configure_resolver(&self, opts: &mut ResolverOpts) { opts.positive_min_ttl = self.min_ttl; diff --git a/linkerd/dns/src/lib.rs b/linkerd/dns/src/lib.rs index f830d93b2b..4ee39e7d86 100644 --- a/linkerd/dns/src/lib.rs +++ b/linkerd/dns/src/lib.rs @@ -64,7 +64,7 @@ impl Resolver { } pub fn new(config: ResolverConfig, mut opts: ResolverOpts) -> Self { - // Disable Trust-DNS's caching. + // Disable Hickory-resolver's caching. opts.cache_size = 0; // This function is synchronous, but needs to be called within the Tokio // 0.2 runtime context, since it gets a handle. diff --git a/linkerd/tracing/src/lib.rs b/linkerd/tracing/src/lib.rs index bbbeacf19a..a8c89f62e6 100644 --- a/linkerd/tracing/src/lib.rs +++ b/linkerd/tracing/src/lib.rs @@ -26,7 +26,7 @@ const ENV_LOG_LEVEL: &str = "LINKERD2_PROXY_LOG"; const ENV_LOG_FORMAT: &str = "LINKERD2_PROXY_LOG_FORMAT"; const ENV_ACCESS_LOG: &str = "LINKERD2_PROXY_ACCESS_LOG"; -const DEFAULT_LOG_LEVEL: &str = "warn,linkerd=info,hickory_dns=error"; +const DEFAULT_LOG_LEVEL: &str = "warn,linkerd=info,hickory=error"; const DEFAULT_LOG_FORMAT: &str = "PLAIN"; #[derive(Debug, Default)]