mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
MM-59095: Properly implement IsIndexingSync (#27738)
Here we change the default liveIndexing size. https://mattermost.atlassian.net/browse/MM-59095 ```release-note Fix a bug where indexing would always be done async even after setting LiveIndexingBatchSize to 1. Now we respect the config and index synchronously if the value is set to 1. ``` Co-authored-by: Mattermost Build <build@mattermost.com>
This commit is contained in:
parent
401fca2648
commit
082a4df0c2
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ const (
|
|||
ElasticsearchSettingsDefaultAggregatePostsAfterDays = 365
|
||||
ElasticsearchSettingsDefaultPostsAggregatorJobStartTime = "03:00"
|
||||
ElasticsearchSettingsDefaultIndexPrefix = ""
|
||||
ElasticsearchSettingsDefaultLiveIndexingBatchSize = 1
|
||||
ElasticsearchSettingsDefaultLiveIndexingBatchSize = 10
|
||||
ElasticsearchSettingsDefaultRequestTimeoutSeconds = 30
|
||||
ElasticsearchSettingsDefaultBatchSize = 10000
|
||||
ElasticsearchSettingsESBackend = "elasticsearch"
|
||||
|
|
|
|||
Loading…
Reference in a new issue