summaryrefslogtreecommitdiffstats
path: root/mattermost.go
diff options
context:
space:
mode:
Diffstat (limited to 'mattermost.go')
-rw-r--r--mattermost.go27
1 files changed, 6 insertions, 21 deletions
diff --git a/mattermost.go b/mattermost.go
index 45ffcc88f..c555862e9 100644
--- a/mattermost.go
+++ b/mattermost.go
@@ -19,6 +19,7 @@ import (
l4g "github.com/alecthomas/log4go"
"github.com/mattermost/platform/api"
+ "github.com/mattermost/platform/einterfaces"
"github.com/mattermost/platform/manualtesting"
"github.com/mattermost/platform/model"
"github.com/mattermost/platform/utils"
@@ -69,7 +70,7 @@ func main() {
web.InitWeb()
if model.BuildEnterpriseReady == "true" {
- loadLicense()
+ api.LoadLicense()
}
if !utils.IsLicensed && len(utils.Cfg.SqlSettings.DataSourceReplicas) > 1 {
@@ -91,6 +92,10 @@ func main() {
setDiagnosticId()
runSecurityAndDiagnosticsJobAndForget()
+ if einterfaces.GetComplianceInterface() != nil {
+ einterfaces.GetComplianceInterface().StartComplianceDailyJob()
+ }
+
// wait for kill signal before attempting to gracefully shutdown
// the running service
c := make(chan os.Signal)
@@ -101,26 +106,6 @@ func main() {
}
}
-func loadLicense() {
- licenseId := ""
- if result := <-api.Srv.Store.System().Get(); result.Err == nil {
- props := result.Data.(model.StringMap)
- licenseId = props[model.SYSTEM_ACTIVE_LICENSE_ID]
- }
-
- if len(licenseId) != 26 {
- l4g.Warn(utils.T("mattermost.load_license.find.warn"))
- return
- }
-
- if result := <-api.Srv.Store.License().Get(licenseId); result.Err == nil {
- record := result.Data.(*model.LicenseRecord)
- utils.LoadLicense([]byte(record.Bytes))
- } else {
- l4g.Warn(utils.T("mattermost.load_license.find.warn"))
- }
-}
-
func setDiagnosticId() {
if result := <-api.Srv.Store.System().Get(); result.Err == nil {
props := result.Data.(model.StringMap)