You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2016/11/30 18:20:33 UTC

[5/8] aries-jax-rs-whiteboard git commit: Taking for granted we are doing everything synchronously for the moment

Taking for granted we are doing everything synchronously for the moment


Project: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/repo
Commit: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/commit/2846c129
Tree: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/tree/2846c129
Diff: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/diff/2846c129

Branch: refs/heads/master
Commit: 2846c1299be62732d5e5e071c3ac247598a3b508
Parents: 50a652a
Author: Carlos Sierra <cs...@apache.org>
Authored: Wed Nov 30 19:15:15 2016 +0100
Committer: Carlos Sierra <cs...@apache.org>
Committed: Wed Nov 30 19:15:15 2016 +0100

----------------------------------------------------------------------
 jax-rs.itests/src/main/java/test/JaxrsTest.java | 13 -------------
 1 file changed, 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/blob/2846c129/jax-rs.itests/src/main/java/test/JaxrsTest.java
----------------------------------------------------------------------
diff --git a/jax-rs.itests/src/main/java/test/JaxrsTest.java b/jax-rs.itests/src/main/java/test/JaxrsTest.java
index 04dcfe9..654bf59 100644
--- a/jax-rs.itests/src/main/java/test/JaxrsTest.java
+++ b/jax-rs.itests/src/main/java/test/JaxrsTest.java
@@ -46,19 +46,6 @@ public class JaxrsTest extends TestCase {
             serviceRegistration = bundleContext.registerService(
                 Object.class, testAddon, properties);
 
-            // TODO this availability should be checked through a jaxrs runtime service
-
-            Filter filter = bundleContext.createFilter("(CXF_ENDPOINT_ADDRESS=/test-addon)");
-
-            ServiceTracker<?, ?> st = new ServiceTracker<>(bundleContext, filter, null);
-
-            st.open();
-
-            if (st.waitForService(5000) == null) {
-                fail();
-            }
-
-            // TODO add http client to connect to the endpoint
         }
         finally {
             if (serviceRegistration != null) {