From f0488929d4b06ac78f7cea755c804eb9368f839c Mon Sep 17 00:00:00 2001 From: Dave Allison Date: Wed, 28 Jun 2023 10:59:16 -0700 Subject: [PATCH] remove accidental commit of debug code --- server/server.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/server.cc b/server/server.cc index 8efca75..43fd312 100644 --- a/server/server.cc +++ b/server/server.cc @@ -224,7 +224,6 @@ absl::Status Server::Run() { }, "Listener UDS")); -#if 0 // Start the channel directory coroutine. coroutines_.insert(std::make_unique( co_scheduler_, [this](co::Coroutine *c) { ChannelDirectoryCoroutine(c); }, @@ -234,7 +233,6 @@ absl::Status Server::Run() { coroutines_.insert(std::make_unique( co_scheduler_, [this](co::Coroutine *c) { StatisticsCoroutine(c); }, "Channel stats")); -#endif if (!local_) { // Start the discovery receiver coroutine.