Fix syntax in erb file, SC-2670

This commit is contained in:
Patrik Holmqvist 2025-02-05 13:21:29 +01:00
parent 061bcc9d02
commit 25b92e49fd
Signed by: pahol
GPG key ID: 5D5B0D4E93F77273

View file

@ -51,10 +51,10 @@ management:
port: 8444
health:
redis:
<% if @session_backend == redis -%>
<% if @session_backend == 'redis' -%>
enabled: true
<% end %>
<% if @session_backend == memory -%>
<% if @session_backend == 'memory' -%>
enabled: false
<% end %>