diff --git a/internal/api/v1/debug/handler.go b/internal/api/v1/debug/handler.go index 271ab09..c128b9d 100644 --- a/internal/api/v1/debug/handler.go +++ b/internal/api/v1/debug/handler.go @@ -50,7 +50,7 @@ func jsonHandler[T debuggable](getData iter.Seq2[string, T]) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { gpwebsocket.DynamicJSONHandler(w, r, func() []map[string]any { return toSortedSlice(getData) - }, 1*time.Second) + }, 200*time.Millisecond) } }