From 0b0220c203f2200932597a0d5f34c74c976b1779 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Fri, 3 Jul 2020 16:50:56 +0200 Subject: [PATCH] Fix a typo. --- templates/10-java-caching-proxy.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/10-java-caching-proxy.sh.j2 b/templates/10-java-caching-proxy.sh.j2 index 30c74bc..5b6a21c 100644 --- a/templates/10-java-caching-proxy.sh.j2 +++ b/templates/10-java-caching-proxy.sh.j2 @@ -1 +1 @@ -export JAVA_OPTS='-DproxySet=true -Dhttp.proxyHost={{ env_proxy_http_host }} -Dhttp.proxyPort={{ env_proxy_http_port }} -Dhttps.proxyHost={{ env_proxy_http_host }} -Dhttps.proxyPort={{ env_proxy_http_port }} -Dhttp.nonProxyHosts="{% for noproxy_h in no_proxy_target %}{{ noproxy_h }}{% if not loop.last %}|{% endif %}{% endfor %}" $JAVA_OPTS' +export JAVA_OPTS='-DproxySet=true -Dhttp.proxyHost={{ env_proxy_http_host }} -Dhttp.proxyPort={{ env_proxy_http_port }} -Dhttps.proxyHost={{ env_proxy_http_host }} -Dhttps.proxyPort={{ env_proxy_http_port }} -Dhttp.nonProxyHosts="{% for noproxy_h in no_proxy_targets %}{{ noproxy_h }}{% if not loop.last %}|{% endif %}{% endfor %}" $JAVA_OPTS'