Unverified Commit a61df6cb authored by Jyong's avatar Jyong Committed by GitHub

timeout parameter error (#2052)

Co-authored-by: 's avatarjyong <jyong@dify.ai>
parent 790b885d
......@@ -1450,7 +1450,7 @@ class Qdrant(VectorStore):
wal_config=wal_config,
quantization_config=quantization_config,
init_from=init_from,
timeout=timeout, # type: ignore[arg-type]
timeout=int(timeout), # type: ignore[arg-type]
)
is_new_collection = True
if force_recreate:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment