mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-04 16:38:52 +01:00
Merge branch 'show-dns-setup-error' into 'next'
Display actual error message from TokioAsyncResolver, if any See merge request famedly/conduit!296
This commit is contained in:
commit
0565b5a6c8
1 changed files with 5 additions and 1 deletions
|
@ -149,7 +149,11 @@ impl Globals {
|
||||||
globals,
|
globals,
|
||||||
config,
|
config,
|
||||||
keypair: Arc::new(keypair),
|
keypair: Arc::new(keypair),
|
||||||
dns_resolver: TokioAsyncResolver::tokio_from_system_conf().map_err(|_| {
|
dns_resolver: TokioAsyncResolver::tokio_from_system_conf().map_err(|e| {
|
||||||
|
error!(
|
||||||
|
"Failed to set up trust dns resolver with system config: {}",
|
||||||
|
e
|
||||||
|
);
|
||||||
Error::bad_config("Failed to set up trust dns resolver with system config.")
|
Error::bad_config("Failed to set up trust dns resolver with system config.")
|
||||||
})?,
|
})?,
|
||||||
actual_destination_cache: Arc::new(RwLock::new(WellKnownMap::new())),
|
actual_destination_cache: Arc::new(RwLock::new(WellKnownMap::new())),
|
||||||
|
|
Loading…
Reference in a new issue