Skip to content

Commit bdfbc78

Browse files
committed
Fixed too many values to unpack error on get_final_benchmark_config()
1 parent 2b27bf7 commit bdfbc78

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,16 @@ def process_self_contained_coordinator_stream(
336336
client_containers = []
337337

338338
with open(test_file, "r") as stream:
339-
benchmark_config, test_name = get_final_benchmark_config(
339+
result, benchmark_config, test_name = get_final_benchmark_config(
340340
None, stream, ""
341341
)
342-
342+
if result is False:
343+
logging.error(
344+
"Skipping {} given there were errors while calling get_final_benchmark_config()".format(
345+
test_file
346+
)
347+
)
348+
continue
343349
(
344350
_,
345351
_,

0 commit comments

Comments
 (0)