Only print error if FTS is still enabled

This commit is contained in:
Kovid Goyal 2022-04-27 16:13:50 +05:30
parent 251fd7a92c
commit d441eb32b5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -494,8 +494,9 @@ class Cache:
try:
has_more = do_one()
except Exception:
import traceback
traceback.print_exc()
if self.backend.fts_enabled:
import traceback
traceback.print_exc()
@write_api
def queue_next_fts_job(self):