refactor(): renaming alerting hide ui option, #7318

This commit is contained in:
Torkel Ödegaard
2017-01-25 13:32:26 +01:00
parent fee4846429
commit 40d39f8a3e
6 changed files with 10 additions and 8 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ func (g *GrafanaServerImpl) Start() {
plugins.Init()
// init alerting
if setting.ExecuteAlerts {
if setting.AlertingEnabled && setting.ExecuteAlerts {
engine := alerting.NewEngine()
g.childRoutines.Go(func() error { return engine.Run(g.context) })
}