Skip to content
Snippets Groups Projects
Commit 0e697c67 authored by John Keates's avatar John Keates Committed by GitHub
Browse files

Merge pull request #68 from stenstad/master

Add timeouts handling to backend section of template.
parents 2f2feec2 5a1d62f9
No related branches found
No related tags found
No related merge requests found
...@@ -472,6 +472,11 @@ backend {{ backend.get('name', backend_name) }} ...@@ -472,6 +472,11 @@ backend {{ backend.get('name', backend_name) }}
{%- if 'balance' in backend %} {%- if 'balance' in backend %}
balance {{ backend.balance }} balance {{ backend.balance }}
{%- endif %} {%- endif %}
{%- if 'timeouts' in backend %}
{%- for timeout in backend.timeouts %}
timeout {{ timeout }}
{%- endfor %}
{%- endif %}
{%- if 'options' in backend %} {%- if 'options' in backend %}
{%- if backend.options is string %} {%- if backend.options is string %}
option {{ backend.options }} option {{ backend.options }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment