diff options
Diffstat (limited to 'setup')
-rw-r--r-- | setup/config/config_syncapi.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setup/config/config_syncapi.go b/setup/config/config_syncapi.go index 196afb82..c890b005 100644 --- a/setup/config/config_syncapi.go +++ b/setup/config/config_syncapi.go @@ -59,6 +59,9 @@ func (f *Fulltext) Defaults(opts DefaultOpts) { } func (f *Fulltext) Verify(configErrs *ConfigErrors, isMonolith bool) { + if !f.Enabled { + return + } checkNotEmpty(configErrs, "syncapi.fulltext.index_path", string(f.IndexPath)) checkNotEmpty(configErrs, "syncapi.fulltext.language", f.Language) } |