Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redisbench-admin"
version = "0.7.18"
version = "0.7.19"
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
authors = ["filipecosta90 <filipecosta.90@gmail.com>","Redis Performance Group <performance@redis.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion redisbench_admin/run_remote/remote_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def run_remote_client_tool(
)
command = ["cat {}".format(remote_results_file)]
recv_exit_status, stdout, stderr = execute_remote_commands(
client_public_ip, username, private_key, [command], client_ssh_port
client_public_ip, username, private_key, command, client_ssh_port
)[0]
logging.warning("Remote results file content: {}".format(stdout))

Expand Down