Disable fulltext search in pinecone builds

This commit is contained in:
Devon Hudson 2023-02-04 05:55:59 -07:00
parent 26f86a76b6
commit 4ed61740ab
No known key found for this signature in database
GPG Key ID: CD06B18E77F6A628

View File

@ -340,6 +340,9 @@ func (m *DendriteMonolith) Start() {
cfg.Global.ServerName = gomatrixserverlib.ServerName(hex.EncodeToString(pk))
cfg.Global.KeyID = gomatrixserverlib.KeyID(signing.KeyID)
cfg.Global.JetStream.InMemory = false
// NOTE : disabled for now since there is a 64 bit alignment panic on 32 bit systems
// This isn't actually fixed: https://github.com/blevesearch/zapx/pull/147
cfg.SyncAPI.Fulltext.Enabled = false
enableRelaying := false
enableMetrics := false