Skip to content

Commit c2ab4ca

Browse files
Fixed bug on tool selection inserted when 'extract' option was added (#41)
* [fix] Fixed a bug on tool selection inserted when 'extract' option was added. * Bumping version from 0.1.40 to 0.1.41
1 parent b182631 commit c2ab4ca

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.1.40"
3+
version = "0.1.41"
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/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def main():
5353

5454
if requested_tool == "run":
5555
parser = create_run_arguments(parser)
56-
if requested_tool == "extract":
56+
elif requested_tool == "extract":
5757
parser = create_extract_arguments(parser)
5858
elif requested_tool == "compare":
5959
parser = create_compare_arguments(parser)

0 commit comments

Comments
 (0)