This is an automated email from the ASF dual-hosted git repository. amichair pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/aries-rsa.git
commit 68f8e829fa107ae7430573ec70fcffa4cf7373b5 Author: Amichai Rothman <[email protected]> AuthorDate: Thu Apr 2 22:02:03 2026 +0300 Remove service property manipulations already performed by EndpointDescription --- .../main/java/org/apache/aries/rsa/core/RemoteServiceAdminCore.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/rsa/src/main/java/org/apache/aries/rsa/core/RemoteServiceAdminCore.java b/rsa/src/main/java/org/apache/aries/rsa/core/RemoteServiceAdminCore.java index 72f056c5..6683f040 100644 --- a/rsa/src/main/java/org/apache/aries/rsa/core/RemoteServiceAdminCore.java +++ b/rsa/src/main/java/org/apache/aries/rsa/core/RemoteServiceAdminCore.java @@ -459,9 +459,6 @@ public class RemoteServiceAdminCore implements RemoteServiceAdmin { ImportRegistrationImpl imReg = new ImportRegistrationImpl(endpoint, closeHandler, eventProducer); try { Dictionary<String, Object> serviceProps = new Hashtable<>(endpoint.getProperties()); - serviceProps.put(RemoteConstants.SERVICE_IMPORTED, true); - serviceProps.remove(RemoteConstants.SERVICE_EXPORTED_INTERFACES); - ClientServiceFactory csf = new ClientServiceFactory(endpoint, handler, imReg); // Export the factory using the api context as it has very few imports.
