HTTP handler for a simple ping healthcheck
()
| 76 | |
| 77 | // HTTP handler for a simple ping healthcheck |
| 78 | func (h *handler) handlePing() error { |
| 79 | h.writeTextStatus(http.StatusOK, []byte("OK")) |
| 80 | return nil |
| 81 | } |
| 82 | |
| 83 | func (h *handler) handleAllDbs() error { |
| 84 | verbose := h.getBoolQuery("verbose") |
nothing calls this directly
no test coverage detected