remove unused config (#45056)

This commit is contained in:
Will Browne
2022-02-08 12:42:14 +01:00
committed by GitHub
parent b409811005
commit 88ea9aef8d

View File

@@ -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