We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1260829 + 3c24c93 commit 0f4f2e0Copy full SHA for 0f4f2e0
src/typesense/configuration.py
@@ -78,6 +78,8 @@ class ConfigDict(typing.TypedDict):
78
79
read_replica_nodes (list[typing.Union[str, NodeConfigDict]], deprecated): A list of
80
dictionaries or URLs that represent the read replica nodes.
81
+
82
+ connection_timeout_seconds (float): The connection timeout in seconds.
83
"""
84
85
nodes: typing.List[typing.Union[str, NodeConfigDict]]
@@ -93,6 +95,7 @@ class ConfigDict(typing.TypedDict):
93
95
read_replica_nodes: typing.NotRequired[
94
96
typing.List[typing.Union[str, NodeConfigDict]]
97
] # deprecated
98
+ connection_timeout_seconds: typing.NotRequired[float]
99
100
101
class Node:
0 commit comments