aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/zenserver.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-01-28 20:12:41 +0100
committerGitHub Enterprise <[email protected]>2026-01-28 20:12:41 +0100
commitc6a24a97a3097548e070425226587c1896b6b0f0 (patch)
treeca409c67e9cb6d2ac9948c4e5f8686f901ec0810 /src/zenserver/zenserver.cpp
parent5.7.19 (diff)
downloadzen-c6a24a97a3097548e070425226587c1896b6b0f0.tar.xz
zen-c6a24a97a3097548e070425226587c1896b6b0f0.zip
restore missing healthinfo call (#737)
Diffstat (limited to 'src/zenserver/zenserver.cpp')
-rw-r--r--src/zenserver/zenserver.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/zenserver/zenserver.cpp b/src/zenserver/zenserver.cpp
index c5c36a4a8..2bafeeaa1 100644
--- a/src/zenserver/zenserver.cpp
+++ b/src/zenserver/zenserver.cpp
@@ -151,6 +151,11 @@ ZenServerBase::Initialize(const ZenServerConfig& ServerOptions, ZenServerState::
EnqueueStatsReportingTimer();
}
+ m_HealthService.SetHealthInfo({.DataRoot = ServerOptions.DataDir,
+ .AbsLogPath = ServerOptions.AbsLogFile,
+ .HttpServerClass = std::string(ServerOptions.HttpConfig.ServerClass),
+ .BuildVersion = std::string(ZEN_CFG_VERSION_BUILD_STRING_FULL)});
+
LogSettingsSummary(ServerOptions);
return EffectiveBasePort;