From 5eb1309668f8b63340ab3062a58d07cc8ebe001b Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Fri, 3 May 2024 13:27:58 +0200 Subject: [PATCH] A conditional misses the 'endif'. --- templates/shinyproxy-conf.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/shinyproxy-conf.yml.j2 b/templates/shinyproxy-conf.yml.j2 index 544606b..0dfdf0c 100644 --- a/templates/shinyproxy-conf.yml.j2 +++ b/templates/shinyproxy-conf.yml.j2 @@ -137,7 +137,7 @@ proxy: container-memory-limit: {{ app.docker_memory | default('2g') }} container-cpu-request: {{ app.container_cpu_request | default('1') }} - {% if app.target_path is defined %}target-path: {{ app.target_path }} + {% if app.target_path is defined %}target-path: {{ app.target_path }}{% endif %} {% if app.container_cpu_limit is defined %}container-cpu-limit: {{ app.container_cpu_limit }}{% endif %}