Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/osgi
diff options
context:
space:
mode:
authorslewis2018-05-07 15:50:38 +0000
committerslewis2018-05-07 15:50:38 +0000
commit59f10f5914ce9f896dc05c60aa02f7ddc914a650 (patch)
treed5582635732ed67690a9f8c49e1b0a74afc70b07 /osgi
parent544906ab942a826de4e5e39184c668c121dbb135 (diff)
downloadorg.eclipse.ecf-59f10f5914ce9f896dc05c60aa02f7ddc914a650.tar.gz
org.eclipse.ecf-59f10f5914ce9f896dc05c60aa02f7ddc914a650.tar.xz
org.eclipse.ecf-59f10f5914ce9f896dc05c60aa02f7ddc914a650.zip
Fix for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=534439
Diffstat (limited to 'osgi')
-rw-r--r--osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/EndpointDescriptionLocator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/EndpointDescriptionLocator.java b/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/EndpointDescriptionLocator.java
index 988caa551..4d4bdb943 100644
--- a/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/EndpointDescriptionLocator.java
+++ b/osgi/bundles/org.eclipse.ecf.osgi.services.remoteserviceadmin/src/org/eclipse/ecf/osgi/services/remoteserviceadmin/EndpointDescriptionLocator.java
@@ -1367,8 +1367,9 @@ public class EndpointDescriptionLocator implements IEndpointDescriptionLocator {
}
}
+ // Fix for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=534439
public boolean triggerDiscovery() {
- return false;
+ return true;
}
}

Back to the top