mirror of https://github.com/linkerd/linkerd2.git
Fix intermittent outbound_times_out failure. (#471)
This was caused by the fact that a new instance of `env_logger::init()` was added after the PR that rewrote them all to `env_logger::try_init()` was added. Fixes #469 Signed-off-by: Brian Smith <brian@briansmith.org>
This commit is contained in:
parent
6b4d294a40
commit
d993820cb3
|
@ -59,7 +59,7 @@ fn outbound_updates_newer_services() {
|
|||
#[test]
|
||||
#[cfg_attr(not(feature = "flaky_tests"), ignore)]
|
||||
fn outbound_times_out() {
|
||||
let _ = env_logger::init();
|
||||
let _ = env_logger::try_init();
|
||||
let mut env = config::TestEnv::new();
|
||||
|
||||
// set the bind timeout to 100 ms.
|
||||
|
|
Loading…
Reference in New Issue