Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix missing newline in consul.conf before option only_passing #206

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/consul.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"*": "{{ consul_dns_service_ttl }}"
},
"enable_truncate": {{ "true" if consul_dns_enable_truncate else "false" }},
{%- if (consul_udp_answer_limit is defined) %}
{% if (consul_udp_answer_limit is defined) %}
"udp_answer_limit": {{ consul_udp_answer_limit }},
{%- endif %}
{% endif %}
"only_passing": {{ "true" if consul_dns_only_passing else "false" }}
},
{% endif %}
Expand Down