From 488529b99f685f12efd28bfdac6231b2b4c3d5c8 Mon Sep 17 00:00:00 2001 From: Leon Sorokin Date: Wed, 19 May 2021 23:02:01 -0500 Subject: [PATCH] Live: reduce render throttling (#34451) --- public/app/features/live/perf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/live/perf.ts b/public/app/features/live/perf.ts index 2af73c371db..aea98083981 100644 --- a/public/app/features/live/perf.ts +++ b/public/app/features/live/perf.ts @@ -5,7 +5,7 @@ let lastUpdate = Date.now(); */ export const perf = { budget: 1, - threshold: 1.05, // trial and error appears about right + threshold: 1.5, // trial and error appears about right ok: true, last: lastUpdate, };