@@ -177,9 +177,9 @@ class AdvancedBaseClientConfiguration:
177177
178178 Attributes:
179179 connection_timeout (Optional[int]): The duration in milliseconds to wait for a TCP/TLS connection to complete.
180- This applies both during initial client creation and any reconnections that may occur during request processing.
180+ This applies both during initial client creation and any reconnection that may occur during request processing.
181181 **Note**: A high connection timeout may lead to prolonged blocking of the entire command pipeline.
182- If not explicitly set, a default value of 250 milliseconds will be used.
182+ If not explicitly set, a default value of 2000 milliseconds will be used.
183183 tls_config (Optional[TlsAdvancedConfiguration]): The advanced TLS configuration settings.
184184 This allows for more granular control of TLS behavior, such as enabling an insecure mode
185185 that bypasses certificate validation.
@@ -236,7 +236,7 @@ class BaseClientConfiguration:
236236 request_timeout (Optional[int]): The duration in milliseconds that the client should wait for a request to
237237 complete.
238238 This duration encompasses sending the request, awaiting for a response from the server, and any required
239- reconnections or retries.
239+ reconnection or retries.
240240 If the specified timeout is exceeded for a pending request, it will result in a timeout error. If not
241241 explicitly set, a default value of 250 milliseconds will be used.
242242 reconnect_strategy (Optional[BackoffStrategy]): Strategy used to determine how and when to reconnect, in case of
@@ -389,7 +389,7 @@ class GlideClientConfiguration(BaseClientConfiguration):
389389 read_from (ReadFrom): If not set, `PRIMARY` will be used.
390390 request_timeout (Optional[int]): The duration in milliseconds that the client should wait for a request to complete.
391391 This duration encompasses sending the request, awaiting for a response from the server, and any required
392- reconnections or retries.
392+ reconnection or retries.
393393 If the specified timeout is exceeded for a pending request, it will result in a timeout error.
394394 If not explicitly set, a default value of 250 milliseconds will be used.
395395 reconnect_strategy (Optional[BackoffStrategy]): Strategy used to determine how and when to reconnect, in case of
@@ -554,7 +554,7 @@ class GlideClusterClientConfiguration(BaseClientConfiguration):
554554 read_from (ReadFrom): If not set, `PRIMARY` will be used.
555555 request_timeout (Optional[int]): The duration in milliseconds that the client should wait for a request to complete.
556556 This duration encompasses sending the request, awaiting for a response from the server, and any required
557- reconnections or retries.
557+ reconnection or retries.
558558 If the specified timeout is exceeded for a pending request, it will result in a timeout error. If not explicitly
559559 set, a default value of 250 milliseconds will be used.
560560 reconnect_strategy (Optional[BackoffStrategy]): Strategy used to determine how and when to reconnect, in case of
0 commit comments