fix: Handle is_search_module_loaded for redis version < 4.0.0 (#27574)
- Return False if error occurs
This commit is contained in:
parent
4096b1471f
commit
d637f79517
@ -20,14 +20,16 @@ def get_indexable_web_fields():
|
|||||||
return [df.fieldname for df in valid_fields]
|
return [df.fieldname for df in valid_fields]
|
||||||
|
|
||||||
def is_search_module_loaded():
|
def is_search_module_loaded():
|
||||||
cache = frappe.cache()
|
try:
|
||||||
out = cache.execute_command('MODULE LIST')
|
cache = frappe.cache()
|
||||||
|
out = cache.execute_command('MODULE LIST')
|
||||||
|
|
||||||
parsed_output = " ".join(
|
parsed_output = " ".join(
|
||||||
(" ".join([s.decode() for s in o if not isinstance(s, int)]) for o in out)
|
(" ".join([s.decode() for s in o if not isinstance(s, int)]) for o in out)
|
||||||
)
|
)
|
||||||
|
return "search" in parsed_output
|
||||||
return "search" in parsed_output
|
except Exception:
|
||||||
|
return False
|
||||||
|
|
||||||
def if_redisearch_loaded(function):
|
def if_redisearch_loaded(function):
|
||||||
"Decorator to check if Redisearch is loaded."
|
"Decorator to check if Redisearch is loaded."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user