Skip to content

Commit bae2055

Browse files
Fixed cat of log on error situation (#324)
1 parent 6458598 commit bae2055

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisbench-admin"
3-
version = "0.7.18"
3+
version = "0.7.19"
44
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
55
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "README.md"

redisbench_admin/run_remote/remote_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def run_remote_client_tool(
225225
)
226226
command = ["cat {}".format(remote_results_file)]
227227
recv_exit_status, stdout, stderr = execute_remote_commands(
228-
client_public_ip, username, private_key, [command], client_ssh_port
228+
client_public_ip, username, private_key, command, client_ssh_port
229229
)[0]
230230
logging.warning("Remote results file content: {}".format(stdout))
231231

0 commit comments

Comments
 (0)