(w http.ResponseWriter, r *http.Request)
| 1200 | } |
| 1201 | |
| 1202 | func (i *Ingester) RenewTokenHandler(w http.ResponseWriter, r *http.Request) { |
| 1203 | i.lifecycler.RenewTokens(0.1, r.Context()) |
| 1204 | w.WriteHeader(http.StatusNoContent) |
| 1205 | } |
| 1206 | |
| 1207 | // ShutdownHandler triggers the following set of operations in order: |
| 1208 | // - Change the state of ring to stop accepting writes. |
nothing calls this directly
no test coverage detected