This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
OpenSource
/
dify
Watch
4
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
152
Wiki
Activity
Browse Source
fix: weaviate batch insert timeout (
#108
)
tags/0.2.2
John Wang
2 years ago
parent
37c3b8979c
commit
8fc2663693
No account linked to committer's email address
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
api/core/vector_store/weaviate_vector_store_client.py
+ 1
- 1
api/core/vector_store/weaviate_vector_store_client.py
View File
@@ -29,7 +29,7 @@ class WeaviateVectorStoreClient(BaseVectorStoreClient):
return weaviate.Client(
url=endpoint,
auth_client_secret=auth_config,
timeout_config=(5,
15
),
timeout_config=(5,
60
),
startup_period=None
)
Write
Preview
Loading…
Cancel
Save