Unverified Commit bedf1b21 authored by Yossi Gottlieb's avatar Yossi Gottlieb Committed by GitHub
Browse files

Fix TLS cluster tests. (#7578)

Fix consistency test added in af5167b7 without considering TLS
redis-cli configuration.
parent 784ceeb9
......@@ -64,7 +64,10 @@ proc test_slave_load_expired_keys {aof} {
kill_instance redis $replica_id
set master_port [get_instance_attrib redis $master_id port]
exec ../../../src/redis-cli -h 127.0.0.1 -p $master_port debug sleep [expr $data_ttl+3] > /dev/null &
exec ../../../src/redis-cli \
-h 127.0.0.1 -p $master_port \
{*}[rediscli_tls_config "../../../tests"] \
debug sleep [expr $data_ttl+3] > /dev/null &
while {[clock seconds] <= $end_time} {
#wait for $data_ttl seconds
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment