Skip to content

Commit 683383d

Browse files
[fix] Fixes for local and remote runs (redisgraph related) (#95)
1 parent f02e041 commit 683383d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisbench-admin"
3-
version = "0.1.71"
3+
version = "0.1.72"
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]>"]
66
readme = "README.md"

redisbench_admin/run_local/run_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def run_local_command_logic(args):
113113
# in case of some unexpected error we fail the test
114114
# noinspection PyBroadException
115115
try:
116-
dirname = (".",)
116+
dirname = "."
117117
# setup Redis
118118
# copy the rdb to DB machine
119119
temporary_dir = tempfile.mkdtemp()

redisbench_admin/run_remote/run_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# internal aux vars
4747
redisbenchmark_go_link = (
4848
"https://s3.amazonaws.com/benchmarks.redislabs/"
49-
"redisgraph/redisgraph-benchmark-go/unstable/"
49+
"tools/redisgraph-benchmark-go/unstable/"
5050
"redisgraph-benchmark-go_linux_amd64"
5151
)
5252
remote_dataset_file = "/tmp/dump.rdb"

0 commit comments

Comments
 (0)