summaryrefslogtreecommitdiffstats
path: root/app/app.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2018-07-26 15:50:38 +0100
committerGitHub <noreply@github.com>2018-07-26 15:50:38 +0100
commit185ed89978e0d88d75b5c606104e78058753bd4d (patch)
treef7950dbbc6f429618f7bb0aa45ccdf613b8afc19 /app/app.go
parent8948b91d7a80169b12907e16581cfdd53bbb73f1 (diff)
downloadchat-185ed89978e0d88d75b5c606104e78058753bd4d.tar.gz
chat-185ed89978e0d88d75b5c606104e78058753bd4d.tar.bz2
chat-185ed89978e0d88d75b5c606104e78058753bd4d.zip
MM-11243: Make Elasticsearch work after enabling without restart. (#9146)
* MM-11243: Make Elasticsearch work after enabling without restart. * Also cope with config vars changing whilst enabled.
Diffstat (limited to 'app/app.go')
-rw-r--r--app/app.go51
1 files changed, 51 insertions, 0 deletions
diff --git a/app/app.go b/app/app.go
index fb1fc725b..6da16c28c 100644
--- a/app/app.go
+++ b/app/app.go
@@ -680,3 +680,54 @@ func (a *App) DoEmojisPermissionsMigration() {
mlog.Critical(fmt.Sprint(result.Err))
}
}
+
+func (a *App) StartElasticsearch() {
+ a.Go(func() {
+ if err := a.Elasticsearch.Start(); err != nil {
+ mlog.Error(err.Error())
+ }
+ })
+
+ a.AddConfigListener(func(oldConfig *model.Config, newConfig *model.Config) {
+ if *oldConfig.ElasticsearchSettings.EnableIndexing == false && *newConfig.ElasticsearchSettings.EnableIndexing == true {
+ a.Go(func() {
+ if err := a.Elasticsearch.Start(); err != nil {
+ mlog.Error(err.Error())
+ }
+ })
+ } else if *oldConfig.ElasticsearchSettings.EnableIndexing == true && *newConfig.ElasticsearchSettings.EnableIndexing == false {
+ a.Go(func() {
+ if err := a.Elasticsearch.Stop(); err != nil {
+ mlog.Error(err.Error())
+ }
+ })
+ } else if *oldConfig.ElasticsearchSettings.Password != *newConfig.ElasticsearchSettings.Password || *oldConfig.ElasticsearchSettings.Username != *newConfig.ElasticsearchSettings.Username || *oldConfig.ElasticsearchSettings.ConnectionUrl != *newConfig.ElasticsearchSettings.ConnectionUrl || *oldConfig.ElasticsearchSettings.Sniff != *newConfig.ElasticsearchSettings.Sniff {
+ a.Go(func() {
+ if *oldConfig.ElasticsearchSettings.EnableIndexing == true {
+ if err := a.Elasticsearch.Stop(); err != nil {
+ mlog.Error(err.Error())
+ }
+ if err := a.Elasticsearch.Start(); err != nil {
+ mlog.Error(err.Error())
+ }
+ }
+ })
+ }
+ })
+
+ a.AddLicenseListener(func() {
+ if a.License() != nil {
+ a.Go(func() {
+ if err := a.Elasticsearch.Start(); err != nil {
+ mlog.Error(err.Error())
+ }
+ })
+ } else {
+ a.Go(func() {
+ if err := a.Elasticsearch.Stop(); err != nil {
+ mlog.Error(err.Error())
+ }
+ })
+ }
+ })
+}