From c5c4cec7418420dd73e2e7985fe23f59e863687e Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Wed, 11 Dec 2019 00:58:37 +0000 Subject: [PATCH] commands: removing redundant directory server check --- src/commands/run.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/commands/run.rs b/src/commands/run.rs index a73c82e2ad..59e35c504d 100644 --- a/src/commands/run.rs +++ b/src/commands/run.rs @@ -34,12 +34,6 @@ pub fn execute(matches: &ArgMatches) { }; let directory = directory::Client::new(directory_config); - // make sure the Directory server is in fact running, panic if not - directory - .health_check - .get() - .expect("Directory health check failed, is the Directory server running?"); - let topology = directory .presence_topology .get()