fix: fix mistake in multi_user_support_possible

This commit is contained in:
Boris Arzentar 2025-11-13 12:10:29 +01:00
parent 47c3c90059
commit 9f4693455d
No known key found for this signature in database
GPG key ID: D5CC274C784807B7

View file

@ -12,8 +12,8 @@ def multi_user_support_possible():
graph_db_config = get_graph_context_config()
vector_db_config = get_vectordb_context_config()
return (
graph_db_config["graph_database_provider"] in VECTOR_DBS_WITH_MULTI_USER_SUPPORT
and vector_db_config["vector_db_provider"] in GRAPH_DBS_WITH_MULTI_USER_SUPPORT
graph_db_config["graph_database_provider"] in GRAPH_DBS_WITH_MULTI_USER_SUPPORT
and vector_db_config["vector_db_provider"] in VECTOR_DBS_WITH_MULTI_USER_SUPPORT
)