Spaces:
Running
Running
Fix: include keepalive status in root dashboard
Browse files- health-server.js +1 -0
health-server.js
CHANGED
|
@@ -1530,6 +1530,7 @@ const server = http.createServer((req, res) => {
|
|
| 1530 |
const postiz = await checkPostizHealth();
|
| 1531 |
const initialData = {
|
| 1532 |
postizRunning: postiz.status === "running",
|
|
|
|
| 1533 |
sync: readSyncStatus(),
|
| 1534 |
};
|
| 1535 |
res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
|
|
|
|
| 1530 |
const postiz = await checkPostizHealth();
|
| 1531 |
const initialData = {
|
| 1532 |
postizRunning: postiz.status === "running",
|
| 1533 |
+
keepalive: getKeepaliveStatus(),
|
| 1534 |
sync: readSyncStatus(),
|
| 1535 |
};
|
| 1536 |
res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
|