Skip to content
Snippets Groups Projects
Commit c75987cb authored by jurgenhaas's avatar jurgenhaas
Browse files

Support timeouts for httpchecks

parent bc6c4a68
No related branches found
No related tags found
No related merge requests found
......@@ -103,9 +103,14 @@ redirect: no
{{ item.name|to_uuid }}:
name: '{{ item.name }}'
url: '{{ item.url }}'
{% if item.regex is defined %}
regex: {{ item.regex|regex_escape() }}
{% endif %}
{% if item.redirect|default(false) %}
redirect: yes
{% endif %}
{% if item.timeout is defined %}
timeout: {{ item.timeout }}
{% endif %}
{% endif %}
{% endfor %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment