summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmarks/command_packer_benchmark.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/command_packer_benchmark.py b/benchmarks/command_packer_benchmark.py
index 8176391..ae2e085 100644
--- a/benchmarks/command_packer_benchmark.py
+++ b/benchmarks/command_packer_benchmark.py
@@ -7,7 +7,7 @@ from base import Benchmark
class StringJoiningConnection(Connection):
- def send_packed_command(self, command):
+ def send_packed_command(self, command, check_health=True):
"Send an already packed command to the Redis server"
if not self._sock:
self.connect()
@@ -38,7 +38,7 @@ class StringJoiningConnection(Connection):
class ListJoiningConnection(Connection):
- def send_packed_command(self, command):
+ def send_packed_command(self, command, check_health=True):
if not self._sock:
self.connect()
try: