···155155 continue;156156 };157157158158- if let Some(old_did) = resolved_did.replace(did.clone()) {159159- if old_did != did {160160- tracing::error!(161161- ?handle,162162- ?did,163163- ?old_did,164164- "multiple conflicting DIDs found for handle"165165- );166166- // @TODO Replace this with an error so we can retry with a167167- // recursive dns resolver.168168- return Ok(None);169169- }158158+ if let Some(old_did) = resolved_did.replace(did.clone())159159+ && old_did != did160160+ {161161+ tracing::error!(162162+ ?handle,163163+ ?did,164164+ ?old_did,165165+ "multiple conflicting DIDs found for handle"166166+ );167167+ // @TODO Replace this with an error so we can retry with a168168+ // recursive dns resolver.169169+ return Ok(None);170170 }171171 }172172 }