Eliminate the built-in SNTP support (fixes #4207): (#4628)

This commit is contained in:
Nik Bougalis
2023-09-26 17:35:31 -07:00
committed by GitHub
parent 2c56d9fc3e
commit 548c91ebb6
17 changed files with 130 additions and 930 deletions

View File

@@ -803,10 +803,8 @@ run(int argc, char** argv)
if (vm.count("debug"))
setDebugLogSink(logs->makeSink("Debug", beast::severities::kTrace));
auto timeKeeper = make_TimeKeeper(logs->journal("TimeKeeper"));
auto app = make_Application(
std::move(config), std::move(logs), std::move(timeKeeper));
std::move(config), std::move(logs), std::make_unique<TimeKeeper>());
if (!app->setup(vm))
return -1;