Browse Source

temporary fix for starting grafana not running systemd

Marcus Efraimsson 7 years ago
parent
commit
a6a1362ad1
1 changed files with 1 additions and 4 deletions
  1. 1 4
      pkg/cmd/grafana-server/server.go

+ 1 - 4
pkg/cmd/grafana-server/server.go

@@ -162,10 +162,7 @@ func (g *GrafanaServerImpl) Run() error {
 		})
 	}
 
-	err = sendSystemdNotification("READY=1")
-	if err != nil {
-		return fmt.Errorf("Could not send systemd notification: %v", err)
-	}
+	sendSystemdNotification("READY=1")
 
 	return g.childRoutines.Wait()
 }