summaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'http.go')
-rw-r--r--http.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/http.go b/http.go
index fd7f5c3..bb5ad24 100644
--- a/http.go
+++ b/http.go
@@ -31,7 +31,9 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
}
if route == "/uptime" {
ok, s := uptimeCheck()
- log.Info(s)
+ fmt.Fprint(w, s)
+ // log.Info(s)
+ updateUptimeGui(s)
if ok {
// log.Info("Handling URL:", route, "cluster is ok")
} else {