aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/hub/zenhubserver.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-04-02 19:59:28 +0200
committerGitHub Enterprise <[email protected]>2026-04-02 19:59:28 +0200
commite417ba62801edc1d05aecd00c7da9e419ad23787 (patch)
tree13650e35b056f797058086500f780d49a64750f0 /src/zenserver/hub/zenhubserver.cpp
parent5.8.2 (diff)
downloadzen-e417ba62801edc1d05aecd00c7da9e419ad23787.tar.xz
zen-e417ba62801edc1d05aecd00c7da9e419ad23787.zip
fix hub consule health endpoint registration (#917)
* use correct health endpoint for zenhubserver consul registration * add total disk space on hub resource pane
Diffstat (limited to 'src/zenserver/hub/zenhubserver.cpp')
-rw-r--r--src/zenserver/hub/zenhubserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/hub/zenhubserver.cpp b/src/zenserver/hub/zenhubserver.cpp
index 5308a76f1..d01e5f3f2 100644
--- a/src/zenserver/hub/zenhubserver.cpp
+++ b/src/zenserver/hub/zenhubserver.cpp
@@ -706,7 +706,7 @@ ZenHubServer::InitializeConsulRegistration(const ZenHubServerConfig& ServerConfi
Info.ServiceName = "zen-hub";
// Info.Address = "localhost"; // Let the consul agent figure out out external address // TODO: Info.BaseUri?
Info.Port = static_cast<uint16_t>(EffectivePort);
- Info.HealthEndpoint = "hub/health";
+ Info.HealthEndpoint = "health";
Info.Tags = std::vector<std::pair<std::string, std::string>>{
std::make_pair("zen-hub", Info.ServiceId),
std::make_pair("version", std::string(ZEN_CFG_VERSION)),