Skip to content

Commit e1b5fa2

Browse files
Added build variant zset (#359)
* Added build variant zset * Bumping version from 0.9.3 to 0.9.4
1 parent 69681e5 commit e1b5fa2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
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.9.3"
3+
version = "0.9.4"
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/redistimeseries.py

+2
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,8 @@ def update_secondary_result_keys(
416416
rts.zadd(running_platforms_szetname, {running_platform: start_time_ms})
417417
if build_variant_name is not None:
418418
rts.sadd(build_variant_setname, build_variant_name)
419+
build_variant_zsetname = build_variant_setname + ":zset"
420+
rts.zadd(build_variant_zsetname, {build_variant_name: start_time_ms})
419421
if testcase_metric_context_paths is not None:
420422
for metric_context_path in testcase_metric_context_paths:
421423
if testcases_metric_context_path_setname != "":

0 commit comments

Comments
 (0)