Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
justRkive committed Jan 10, 2024
1 parent ff2f91e commit ad7e719
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/async_resolver/lookup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,13 @@ pub async fn lookup_stub( //FIXME: podemos ponerle de nombre lookup_strategy y q
break;
}

result_dns_msg = send_query_resolver_by_protocol(config.get_protocol(),new_query.clone(), result_dns_msg.clone(), connections).await;
result_dns_msg = send_query_resolver_by_protocol(
config.get_protocol(),
new_query.clone(),
result_dns_msg.clone(),
connections
).await;

if result_dns_msg.is_err(){
retry_count = retry_count + 1;
}
Expand Down

0 comments on commit ad7e719

Please sign in to comment.