This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch karaf-4.2.x
in repository https://gitbox.apache.org/repos/asf/karaf.git
The following commit(s) were added to refs/heads/karaf-4.2.x by this push:
new 37975bb Fix compilation of HTTP proxy service
37975bb is described below
commit 37975bbcaed59f16d1599d567fffd3a605de782d
Author: jbonofre <[email protected]>
AuthorDate: Fri Dec 18 06:03:01 2020 +0100
Fix compilation of HTTP proxy service
---
.../main/java/org/apache/karaf/http/core/internal/ProxyServiceImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/http/src/main/java/org/apache/karaf/http/core/internal/ProxyServiceImpl.java
b/http/src/main/java/org/apache/karaf/http/core/internal/ProxyServiceImpl.java
index 9463b25..298acb6 100644
---
a/http/src/main/java/org/apache/karaf/http/core/internal/ProxyServiceImpl.java
+++
b/http/src/main/java/org/apache/karaf/http/core/internal/ProxyServiceImpl.java
@@ -50,7 +50,7 @@ public class ProxyServiceImpl implements ProxyService {
try {
Configuration configuration =
configurationAdmin.getConfiguration(CONFIGURATION_PID, null);
if (configuration != null) {
- update(configuration.getProcessedProperties(null));
+ update(configuration.getProperties());
}
} catch (Exception e) {
LOG.error("Can't load proxies", e);