···197197 continue;198198 };199199200200- if let Some(old_did) = resolved_did.replace(did.clone())201201- && old_did != did202202- {203203- tracing::error!(204204- ?handle,205205- ?did,206206- ?old_did,207207- "multiple conflicting DIDs found for handle"208208- );209209- // @TODO Replace this with an error so we can retry with a210210- // recursive dns resolver.211211- return Ok(None);200200+ if let Some(old_did) = resolved_did.replace(did.clone()) {201201+ if old_did != did {202202+ tracing::error!(203203+ ?handle,204204+ ?did,205205+ ?old_did,206206+ "multiple conflicting DIDs found for handle"207207+ );208208+ // @TODO Replace this with an error so we can retry with a209209+ // recursive dns resolver.210210+ return Ok(None);211211+ }212212 }213213 }214214 }