Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2018-03-08 23:53:00 +0000
committerslewis2018-03-08 23:53:00 +0000
commit7a6fed32e71982a39047aa0d43effaae56568c66 (patch)
tree965d0d7dd882c17cdc0694beaf9ad307ffadb8ac /examples/bundles/com.mycorp.examples.timeservice.host
parentf1384a6d3068160830d90678c5ba8237da3d41d9 (diff)
downloadorg.eclipse.ecf-7a6fed32e71982a39047aa0d43effaae56568c66.tar.gz
org.eclipse.ecf-7a6fed32e71982a39047aa0d43effaae56568c66.tar.xz
org.eclipse.ecf-7a6fed32e71982a39047aa0d43effaae56568c66.zip
for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=532205
Added support for Promise, CompletionStage as return values from ECF async proxy. Change-Id: I0000000000000000000000000000000000000000
Diffstat (limited to 'examples/bundles/com.mycorp.examples.timeservice.host')
-rw-r--r--examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
index 29442961c..4a5766d01 100644
--- a/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
+++ b/examples/bundles/com.mycorp.examples.timeservice.host/src/com/mycorp/examples/timeservice/host/Activator.java
@@ -67,7 +67,7 @@ public class Activator implements BundleActivator {
result.put(DEFAULT_CONFIG + ".hostname", "localhost");
}
- result.put("exactlyOnce.timeout", "30");
+ result.put("osgi.basic.timeout", "30001");
result.put(SERVICE_EXPORTED_CONFIGS, config);
// add any config properties. config properties start with

Back to the top