Skip to content
Snippets Groups Projects
Commit 97477ad7 authored by Anders Harrisson's avatar Anders Harrisson
Browse files

Add quote around nonProxyHosts

parent d2bf5bef
No related branches found
Tags v1.16.0
No related merge requests found
Pipeline #182289 passed
......@@ -15,4 +15,4 @@ export ESS_OPIS="{{ phoebus_git_folders_base }}/ess-opis"
export ESS_SYMBOLS="{{ phoebus_ess_symbols_path }}"
export JAVA_ARGS="-XX:+DisableAttachMechanism -Djavax.net.ssl.trustStore={{ phoebus_javax_net_ssl_trustStore }} -Djava.net.useSystemProxies={{ phoebus_use_system_proxies | string | lower }} $JAVA_ARGS"
{{ java_openjdk_bin }} $JAVA_ARGS $JAVA_OPTS{{ " -Dhttp.proxyHost=" + phoebus_http_proxy_host if phoebus_http_proxy_host else "" }}{{ " -Dhttp.proxyPort=" + (phoebus_http_proxy_port | string) if phoebus_http_proxy_port else "" }}{{ " -Dhttp.nonProxyHosts=" + (phoebus_http_non_proxy_hosts | join('|')) if phoebus_http_non_proxy_hosts else "" }}{{ " -Dhttps.proxyHost=" + phoebus_https_proxy_host if phoebus_https_proxy_host else "" }}{{ " -Dhttps.proxyPort=" + (phoebus_https_proxy_port | string) if phoebus_https_proxy_port else "" }} -Dlogback.configurationFile={{ phoebus_logback_config }} -jar $PHOEBUS_JAR $PHOEBUS_OPTS -settings "{{ phoebus_settings_path }}" $@
{{ java_openjdk_bin }} $JAVA_ARGS $JAVA_OPTS{{ " -Dhttp.proxyHost=" + phoebus_http_proxy_host if phoebus_http_proxy_host else "" }}{{ " -Dhttp.proxyPort=" + (phoebus_http_proxy_port | string) if phoebus_http_proxy_port else "" }}{{ " -Dhttp.nonProxyHosts=" + (phoebus_http_non_proxy_hosts | join('|') | quote ) if phoebus_http_non_proxy_hosts else "" }}{{ " -Dhttps.proxyHost=" + phoebus_https_proxy_host if phoebus_https_proxy_host else "" }}{{ " -Dhttps.proxyPort=" + (phoebus_https_proxy_port | string) if phoebus_https_proxy_port else "" }} -Dlogback.configurationFile={{ phoebus_logback_config }} -jar $PHOEBUS_JAR $PHOEBUS_OPTS -settings "{{ phoebus_settings_path }}" $@
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