Skip to content

Commit

Permalink
Update core/src/main/java/org/fao/geonet/lib/ProxyConfiguration.java
Browse files Browse the repository at this point in the history
Co-authored-by: François Prunayre <[email protected]>
  • Loading branch information
josegar74 and fxprunayre authored Sep 11, 2023
1 parent 4b8c8ab commit b02241e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void refresh(SettingManager settingManager) {

if (this.enabled) {
if (this.isProxyConfiguredInSystemProperties) {
if (StringUtils.isNotBlank(ProxyConfiguration.HTTPS_PROXY_HOST)) {
if (StringUtils.isNotBlank(System.getProperty(ProxyConfiguration.HTTPS_PROXY_HOST))) {
this.host = System.getProperty(ProxyConfiguration.HTTPS_PROXY_HOST);
this.port = System.getProperty(ProxyConfiguration.HTTPS_PROXY_PORT);
this.username = System.getProperty(ProxyConfiguration.HTTPS_PROXY_USERNAME, "");
Expand Down

0 comments on commit b02241e

Please sign in to comment.