Skip to content

Commit

Permalink
Make automatic Redis enabling safer, when Hookshot encryption enabled
Browse files Browse the repository at this point in the history
If we ever default encryption to enabled for Hookshot, we only wish to force-enable Redis if Hookshot is actually enabled.
  • Loading branch information
spantaleev committed Dec 16, 2023
1 parent 75a8e0f commit 6a81fa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion group_vars/matrix_servers
Original file line number Diff line number Diff line change
Expand Up @@ -3359,7 +3359,7 @@ ntfy_visitor_request_limit_exempt_hosts_hostnames_auto: |
#
######################################################################

redis_enabled: "{{ matrix_synapse_workers_enabled or matrix_hookshot_experimental_encryption_enabled }}"
redis_enabled: "{{ matrix_synapse_workers_enabled or (matrix_hookshot_enabled and matrix_hookshot_experimental_encryption_enabled) }}"

redis_identifier: matrix-redis

Expand Down

0 comments on commit 6a81fa2

Please sign in to comment.