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.6.21"
version = "0.6.22"
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
37 changes: 21 additions & 16 deletions redisbench_admin/run_remote/remote_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,22 +102,27 @@ def run_remote_client_tool(
benchmark_duration_seconds = calculate_client_tool_duration_and_check(
benchmark_end_time, benchmark_start_time, step_name, warn_min_duration
)
(
artifact_version,
local_bench_fname,
results_dict,
return_code,
) = post_process_remote_run(
artifact_version,
benchmark_config,
benchmark_tool,
local_bench_fname,
return_code,
start_time_ms,
start_time_str,
stdout,
tmp,
)
artifact_version = None
local_bench_fname = None
results_dict = None
return_code = None
if remote_run_result is True:
(
artifact_version,
local_bench_fname,
results_dict,
return_code,
) = post_process_remote_run(
artifact_version,
benchmark_config,
benchmark_tool,
local_bench_fname,
return_code,
start_time_ms,
start_time_str,
stdout,
tmp,
)
return (
artifact_version,
benchmark_duration_seconds,
Expand Down
Loading