Skip to content

Commit

Permalink
more build failure fixes
Browse files Browse the repository at this point in the history
Created using spr 1.3.4
  • Loading branch information
sunshowers committed Nov 6, 2023
1 parent 9510f2a commit bf996ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions end-to-end-tests/src/helpers/ctx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub async fn nexus_addr() -> Result<IpAddr> {
let config = rss_config()?;
let dns_addr = external_dns_addr(&config)?;
let dns_name = nexus_external_dns_name(&config);
let resolver = CustomDnsResolver::new(dns_addr)?;
let resolver = CustomDnsResolver::new(dns_addr);
wait_for_records(
&resolver,
&dns_name,
Expand All @@ -148,7 +148,7 @@ impl ClientParams {
let dns_addr = external_dns_addr(&rss_config)?;
eprintln!("Using external DNS server at {:?}", dns_addr);
let nexus_dns_name = nexus_external_dns_name(&rss_config);
let resolver = Arc::new(CustomDnsResolver::new(dns_addr)?);
let resolver = Arc::new(CustomDnsResolver::new(dns_addr));

// If we were provided with a path to a certificate in the environment,
// add it as a trusted one.
Expand Down

0 comments on commit bf996ed

Please sign in to comment.