Skip to content

Commit 17c4ba9

Browse files
authored
Fix sentinel variable name
Fix sentinel variable name
1 parent a9115fd commit 17c4ba9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/platform/templates/profile.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
{% set redis_host = None %}
5656
{% set sentinels = [] %}
5757
{% for sentinel in groups[vars.redis_group_name] %}
58-
{% set sentinel = dict(host = hostvars[ sentinel ].inventory_hostname, port = sentinel_port) %}
58+
{% set sentinel = dict(host = hostvars[ sentinel ].inventory_hostname, port = redis_sentinel_port) %}
5959
{{ sentinels.append(sentinel) }}
6060
{% endfor %}
6161
{% endif %}

0 commit comments

Comments
 (0)