Skip to content

Commit

Permalink
chore: run cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
CosminPerRam committed Nov 19, 2024
1 parent 2fc86c6 commit ce228ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dns_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ impl DnsCache {
pub(crate) fn refresh_due_srv(&mut self, ty_domain: &str) -> (HashSet<String>, HashSet<u64>) {
let now = current_time_millis();

let instances = Self::find_instance_names(&mut self.ptr, ty_domain, now);
let instances = Self::find_instance_names(&self.ptr, ty_domain, now);

// Check SRV records.
let mut refresh_due = HashSet::new();
Expand Down

0 comments on commit ce228ea

Please sign in to comment.