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 fdcce51 commit a5875e4Copy full SHA for a5875e4
django_valkey/cluster_cache/client/default.py
@@ -3,11 +3,11 @@
3
from valkey.cluster import ValkeyCluster
4
from valkey.typing import KeyT, EncodableT
5
6
-from django_valkey.base_client import BaseClient, _main_exceptions
+from django_valkey.base_client import BaseClient, ClientCommands, _main_exceptions
7
from django_valkey.exceptions import ConnectionInterrupted
8
9
10
-class DefaultClusterClient(BaseClient[ValkeyCluster]):
+class DefaultClusterClient(ClientCommands, BaseClient[ValkeyCluster]):
11
CONNECTION_FACTORY_PATH = (
12
"django_valkey.cluster_cache.pool.ClusterConnectionFactory"
13
)
0 commit comments