From 88ea9aef8d00d8a5d52507da76a6dd0c80b890b4 Mon Sep 17 00:00:00 2001 From: Will Browne Date: Tue, 8 Feb 2022 12:42:14 +0100 Subject: [PATCH] remove unused config (#45056) --- pkg/plugins/config.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/plugins/config.go b/pkg/plugins/config.go index 73f7c76c675..3ad06bb54b8 100644 --- a/pkg/plugins/config.go +++ b/pkg/plugins/config.go @@ -21,8 +21,6 @@ type Cfg struct { // Azure Cloud settings Azure setting.AzureSettings - CheckForUpdates bool - BuildVersion string // TODO Remove } @@ -47,8 +45,6 @@ func FromGrafanaCfg(grafanaCfg *setting.Cfg) *Cfg { // Azure cfg.Azure = grafanaCfg.Azure - cfg.CheckForUpdates = grafanaCfg.CheckForUpdates - cfg.BuildVersion = grafanaCfg.BuildVersion return cfg