File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
.github/actions/run-tests Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 69
69
exit 1
70
70
fi
71
71
72
- if (( redis_major_version < 6 )); then
73
- export REDIS_STACK_EXTRA_ARGS="--save ''"
74
- export REDIS_EXTRA_ARGS="--save ''"
72
+ if (( redis_major_version < 7 )); then
73
+ export REDIS_STACK_EXTRA_ARGS="--tls-auth-clients optional -- save ''"
74
+ export REDIS_EXTRA_ARGS="--tls-auth-clients optional -- save ''"
75
75
fi
76
76
77
77
invoke devenv --endpoints=all-stack
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ services:
10
10
- REDIS_CLUSTER=no
11
11
- PORT=6379
12
12
- TLS_PORT=6666
13
- command : ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
13
+ command : ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional -- save ""}
14
14
ports :
15
15
- 6379:6379
16
16
- 6666:6666 # TLS port
@@ -46,7 +46,7 @@ services:
46
46
- TLS_ENABLED=yes
47
47
- PORT=16379
48
48
- TLS_PORT=27379
49
- command : ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
49
+ command : ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional -- save ""}
50
50
ports :
51
51
- " 16379-16384:16379-16384"
52
52
- " 27379-27384:27379-27384"
You can’t perform that action at this time.
0 commit comments