We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d60ef commit 66b3142Copy full SHA for 66b3142
redis_benchmarks_specification/__runner__/runner.py
@@ -420,7 +420,11 @@ def delete_temporary_files(
420
421
for topology_spec_name in benchmark_config["redis-topologies"]:
422
# Filter by topology if specified
423
- if args.topology and args.topology != "" and topology_spec_name != args.topology:
+ if (
424
+ args.topology
425
+ and args.topology != ""
426
+ and topology_spec_name != args.topology
427
+ ):
428
logging.info(
429
f"Skipping topology {topology_spec_name} as it doesn't match the requested topology {args.topology}"
430
)
0 commit comments