From e7ca31214be2a47890e2a63335621505fa667043 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Sun, 26 Sep 2021 23:48:56 -0400 Subject: [PATCH] Live: disable centrifuge-js debug mode (#39625) (#39626) (cherry picked from commit 1d1da095680d17923abb43b9bf49bad9c21b4c09) Co-authored-by: Alexander Emelin --- public/app/features/live/live.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/app/features/live/live.ts b/public/app/features/live/live.ts index b7141861f8f..f20c7bed370 100644 --- a/public/app/features/live/live.ts +++ b/public/app/features/live/live.ts @@ -59,9 +59,7 @@ export class CentrifugeSrv implements GrafanaLiveSrv { const liveUrl = `${baseURL}${config.appSubUrl}/api/live/ws`; this.orgId = contextSrv.user.orgId; - this.centrifuge = new Centrifuge(liveUrl, { - debug: true, - }); + this.centrifuge = new Centrifuge(liveUrl, {}); this.centrifuge.setConnectData({ sessionId, orgId: this.orgId,