You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<interfacename="jgroups">
{% if keycloak_jgroups_subnet is defined and keycloak_jgroups_subnet | string | length > 0 %}
<subnet-matchvalue="{{ keycloak_jgroups_subnet | string }}"/>
{% elif ansible_default_ipv4 is defined and (ansible_default_ipv4.network + '/' + ansible_default_ipv4.netmask) | ansible.utils.ipaddr('net') | length > 0 %}
<subnet-matchvalue="{{ (ansible_default_ipv4.network + '/' + ansible_default_ipv4.netmask) | ansible.utils.ipaddr('net') }}"/>
{% else %}
<any-address />
{% endif %}
</interface>
by default:
keycloak_jgroups_subnet is defined (=null which is mapped to None on jinja, or sth. similar, but the end result is a string of length 4 with content None)
thus the first branch is taken
and a <subnet-match value="None"/>
The text was updated successfully, but these errors were encountered:
The changes introduced via PR #93 around
keycloak/roles/keycloak/templates/standalone-ha.xml.j2
Line 664 in cebec9c
by default:
keycloak_jgroups_subnet
is defined (=null which is mapped to None on jinja, or sth. similar, but the end result is a string of length 4 with contentNone
)<subnet-match value="None"/>
The text was updated successfully, but these errors were encountered: