Fix: adicionado CORS e corrigido endpoint cluster-health

This commit is contained in:
2025-09-29 17:50:20 -03:00
parent 90f7de5b86
commit 19686e7866
2 changed files with 11 additions and 1 deletions

View File

@@ -1654,7 +1654,7 @@
hideMessages();
try {
const response = await fetch('/api/v1/cluster/status');
const response = await fetch('/api/v1/cluster-health');
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
}