Author: antelder
Date: Tue Mar  2 18:01:01 2010
New Revision: 918131

URL: http://svn.apache.org/viewvc?rev=918131&view=rev
Log:
TUSCANY-3480, temporarily don't fail on unmatched intents

Modified:
    
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java

Modified: 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java?rev=918131&r1=918130&r2=918131&view=diff
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
 (original)
+++ 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
 Tue Mar  2 18:01:01 2010
@@ -501,7 +501,9 @@
         // if there are unresolved intents the service and reference don't 
match
         if (eprIntents.size() > 0){
             matchAudit.append("No match because there are unresolved intents " 
+ eprIntents.toString() + " ");
-            return false;
+// FIXME: TUSCANY-3480, this should return false but as the code isn't 
finished for now let it go and return true
+//            return false;
+            return true;
         }   
         
         // if there are no policy sets on epr or ep side then 


Reply via email to