Skip to content

Commit

Permalink
Add missing tls-auth-clients option
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Oct 23, 2024
1 parent b85e69d commit 1e757be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/actions/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ runs:
exit 1
fi
if (( redis_major_version < 6 )); then
export REDIS_STACK_EXTRA_ARGS="--save ''"
export REDIS_EXTRA_ARGS="--save ''"
if (( redis_major_version < 7 )); then
export REDIS_STACK_EXTRA_ARGS="--tls-auth-clients optional --save ''"
export REDIS_EXTRA_ARGS="--tls-auth-clients optional --save ''"
fi
invoke devenv --endpoints=all-stack
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- REDIS_CLUSTER=no
- PORT=6379
- TLS_PORT=6666
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional --save ""}
ports:
- 6379:6379
- 6666:6666 # TLS port
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
- TLS_ENABLED=yes
- PORT=16379
- TLS_PORT=27379
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional --save ""}
ports:
- "16379-16384:16379-16384"
- "27379-27384:27379-27384"
Expand Down

0 comments on commit 1e757be

Please # to comment.