File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed
redis_benchmarks_specification/__runner__ Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -260,13 +260,17 @@ def process_self_contained_coordinator_stream(
260
260
if tls_enabled :
261
261
metadata ["tls" ] = "true"
262
262
if tls_cert is not None and tls_cert != "" :
263
- _ , tls_cert = cp_to_workdir (temporary_dir_client , tls_cert )
263
+ _ , test_tls_cert = cp_to_workdir (
264
+ temporary_dir_client , tls_cert
265
+ )
264
266
if tls_cacert is not None and tls_cacert != "" :
265
- _ , tls_cacert = cp_to_workdir (
267
+ _ , test_tls_cacert = cp_to_workdir (
266
268
temporary_dir_client , tls_cacert
267
269
)
268
270
if tls_key is not None and tls_key != "" :
269
- _ , tls_key = cp_to_workdir (temporary_dir_client , tls_key )
271
+ _ , test_tls_key = cp_to_workdir (
272
+ temporary_dir_client , tls_key
273
+ )
270
274
271
275
if "preload_tool" in benchmark_config ["dbconfig" ]:
272
276
data_prepopulation_step (
@@ -281,9 +285,9 @@ def process_self_contained_coordinator_stream(
281
285
host ,
282
286
tls_enabled ,
283
287
tls_skip_verify ,
284
- tls_cert ,
285
- tls_key ,
286
- tls_cacert ,
288
+ test_tls_cert ,
289
+ test_tls_key ,
290
+ test_tls_cacert ,
287
291
)
288
292
289
293
benchmark_tool = extract_client_tool (benchmark_config )
@@ -337,9 +341,9 @@ def process_self_contained_coordinator_stream(
337
341
False ,
338
342
tls_enabled ,
339
343
tls_skip_verify ,
340
- tls_cert ,
341
- tls_key ,
342
- tls_cacert ,
344
+ test_tls_cert ,
345
+ test_tls_key ,
346
+ test_tls_cacert ,
343
347
)
344
348
345
349
client_container_image = extract_client_container_image (
You can’t perform that action at this time.
0 commit comments