Skip to content

Commit

Permalink
Added build variant zset (#359)
Browse files Browse the repository at this point in the history
* Added build variant zset

* Bumping version from 0.9.3 to 0.9.4
  • Loading branch information
filipecosta90 authored May 16, 2022
1 parent 69681e5 commit e1b5fa2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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.9.3"
version = "0.9.4"
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
2 changes: 2 additions & 0 deletions redisbench_admin/run/redistimeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,8 @@ def update_secondary_result_keys(
rts.zadd(running_platforms_szetname, {running_platform: start_time_ms})
if build_variant_name is not None:
rts.sadd(build_variant_setname, build_variant_name)
build_variant_zsetname = build_variant_setname + ":zset"
rts.zadd(build_variant_zsetname, {build_variant_name: start_time_ms})
if testcase_metric_context_paths is not None:
for metric_context_path in testcase_metric_context_paths:
if testcases_metric_context_path_setname != "":
Expand Down

0 comments on commit e1b5fa2

Please sign in to comment.