Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions presto-native-execution/presto_cpp/main/PrestoServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,20 +615,20 @@ void PrestoServer::run() {
httpSrvIOExecutor_->join();
}

PRESTO_SHUTDOWN_LOG(INFO)
<< "Joining Exchange Http IO executor '"
<< exchangeHttpIoExecutor_->getName()
<< "': threads: " << exchangeHttpIoExecutor_->numActiveThreads() << "/"
<< exchangeHttpIoExecutor_->numThreads();
exchangeHttpIoExecutor_->join();

PRESTO_SHUTDOWN_LOG(INFO)
<< "Joining Exchange Http CPU executor '"
<< exchangeHttpCpuExecutor_->getName()
<< "': threads: " << exchangeHttpCpuExecutor_->numActiveThreads() << "/"
<< exchangeHttpCpuExecutor_->numThreads();
exchangeHttpCpuExecutor_->join();

PRESTO_SHUTDOWN_LOG(INFO)
<< "Joining Exchange Http IO executor '"
<< exchangeHttpIoExecutor_->getName()
<< "': threads: " << exchangeHttpIoExecutor_->numActiveThreads() << "/"
<< exchangeHttpIoExecutor_->numThreads();
exchangeHttpIoExecutor_->join();

PRESTO_SHUTDOWN_LOG(INFO) << "Done joining our executors.";

auto globalCPUKeepAliveExec = folly::getGlobalCPUExecutor();
Expand Down