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.1.63"
version = "0.1.64"
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>"]
readme = "README.md"
Expand Down
7 changes: 4 additions & 3 deletions redisbench_admin/run/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ def prepare_benchmark_parameters(
command_arr, command_str = prepare_redis_benchmark_command(
benchmark_tool, server_private_ip, server_plaintext_port, entry
)
redirect_file = ">{}".format(remote_results_file)
command_arr.append(redirect_file)
command_str = command_str + " " + redirect_file
if isremote is True:
redirect_file = "> {}".format(remote_results_file)
command_arr.append(redirect_file)
command_str = command_str + " " + redirect_file

if "redisgraph-benchmark-go" in benchmark_tool:
if isremote is True:
Expand Down