@cryptotaxi247 / CoPilot / commits / f54d1e77

605 remove cluster check overview (#606)

* chore: disable cluster health check in data retrieval * chore: update CURRENT_VERSION to 0.1.25

taylor_socfortress committed Jan 19, 2026 at 11:35 UTC f54d1e77a68f0a411852b7de3d4eedb13aa76549
2 files changed +2 -2
backend/app/version/services/version.py
+1 -1
@@ -7,7 +7,7 @@ from loguru import logger
7 from packaging.version import Version
8
9 # Current version - update this with each release
10 -CURRENT_VERSION = "0.1.24"
10 +CURRENT_VERSION = "0.1.25"
11 VERSION_CHECK_URL = "https://api.github.com/repos/socfortress/CoPilot/releases/latest"
12
13
frontend/src/stores/healthcheck.ts
+1 -1
@@ -77,7 +77,7 @@ export const useHealthcheckStore = defineStore("healthcheck", {
77 if (this.uncommittedJournalEntriesThreshold) {
78 this.getGraylogCheck()
79 }
80 - this.getClusterHealth()
80 + // this.getClusterHealth()
81 this.getHealthchecks()
82 }
83 },