make logging not use f-str, change others to f-str (#22882)
This commit is contained in:
@@ -203,9 +203,9 @@ class BaiduVector(BaseVector):
|
||||
|
||||
def _create_table(self, dimension: int) -> None:
|
||||
# Try to grab distributed lock and create table
|
||||
lock_name = "vector_indexing_lock_{}".format(self._collection_name)
|
||||
lock_name = f"vector_indexing_lock_{self._collection_name}"
|
||||
with redis_client.lock(lock_name, timeout=60):
|
||||
table_exist_cache_key = "vector_indexing_{}".format(self._collection_name)
|
||||
table_exist_cache_key = f"vector_indexing_{self._collection_name}"
|
||||
if redis_client.get(table_exist_cache_key):
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user