If the httpproxy parameters is missing in the application.yaml, the application will run and no proxies will be used.
Previously it did not start.
Change-Id: I5f532a0f106255cc3e30defc8191f674d8bf3731
Issue-ID: CCSDK-2966
Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
@Value("${app.webclient.trust-store}")
private String sslTrustStore = "";
- @Value("${app.webclient.http.proxy-host}")
+ @Value("${app.webclient.http.proxy-host:\"\"}")
private String httpProxyHost = "";
- @Value("${app.webclient.http.proxy-port}")
+ @Value("${app.webclient.http.proxy-port:0}")
private int httpProxyPort = 0;
private Map<String, RicConfig> ricConfigs = new HashMap<>();