[ACS-5935] Revert change.

This commit is contained in:
kmagdziarz 2023-09-06 08:39:25 +02:00
parent 71df1b01e2
commit ddf14c7e31

View File

@ -100,7 +100,7 @@ public class HttpClientConfig
Map<String, String> resultProperties = getHttpClientPropertiesForService(properties);
Map<String, String> systemProperties = getHttpClientPropertiesForService(System.getProperties());
resultProperties.putAll(systemProperties); //Override/Add to Global Properties results with values from System Properties
systemProperties.forEach((k, v) -> resultProperties.put(k, v)); //Override/Add to Global Properties results with values from System Properties
return resultProperties;
}