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.
1 parent b3d9cdd commit 8e066a2Copy full SHA for 8e066a2
redis/asyncio/cluster.py
@@ -208,9 +208,6 @@ def __init__(
208
self,
209
host: Optional[str] = None,
210
port: Union[str, int] = 6379,
211
- *,
212
- db: Union[str, int] = 0,
213
- path: Optional[str] = None,
214
# Cluster related kwargs
215
startup_nodes: Optional[List["ClusterNode"]] = None,
216
require_full_coverage: bool = True,
@@ -220,6 +217,8 @@ def __init__(
220
217
connection_error_retry_attempts: int = 5,
221
218
max_connections: int = 2**31,
222
219
# Client related kwargs
+ db: Union[str, int] = 0,
+ path: Optional[str] = None,
223
username: Optional[str] = None,
224
password: Optional[str] = None,
225
client_name: Optional[str] = None,
0 commit comments