Repository: aries-rsa Updated Branches: refs/heads/master 84d31c7db -> 8a0b96e00
[ARIES-1757] Add async intent to provider Project: http://git-wip-us.apache.org/repos/asf/aries-rsa/repo Commit: http://git-wip-us.apache.org/repos/asf/aries-rsa/commit/b6969f20 Tree: http://git-wip-us.apache.org/repos/asf/aries-rsa/tree/b6969f20 Diff: http://git-wip-us.apache.org/repos/asf/aries-rsa/diff/b6969f20 Branch: refs/heads/master Commit: b6969f20c916e1c4abc0bd18a411e402e3e3df4f Parents: 84d31c7 Author: Christian Schneider <[email protected]> Authored: Thu Nov 23 15:38:55 2017 +0100 Committer: Christian Schneider <[email protected]> Committed: Thu Nov 23 15:38:55 2017 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/aries/rsa/provider/tcp/Activator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aries-rsa/blob/b6969f20/provider/tcp/src/main/java/org/apache/aries/rsa/provider/tcp/Activator.java ---------------------------------------------------------------------- diff --git a/provider/tcp/src/main/java/org/apache/aries/rsa/provider/tcp/Activator.java b/provider/tcp/src/main/java/org/apache/aries/rsa/provider/tcp/Activator.java index c26292a..82ebd3e 100644 --- a/provider/tcp/src/main/java/org/apache/aries/rsa/provider/tcp/Activator.java +++ b/provider/tcp/src/main/java/org/apache/aries/rsa/provider/tcp/Activator.java @@ -32,7 +32,7 @@ public class Activator implements BundleActivator { public void start(BundleContext context) throws Exception { DistributionProvider provider = new TCPProvider(); Dictionary<String, Object> props = new Hashtable<>(); - props.put(RemoteConstants.REMOTE_INTENTS_SUPPORTED, new String[]{}); + props.put(RemoteConstants.REMOTE_INTENTS_SUPPORTED, new String[]{ "osgi.async" }); props.put(RemoteConstants.REMOTE_CONFIGS_SUPPORTED, provider.getSupportedTypes()); context.registerService(DistributionProvider.class, provider, props); }
