Author: antelder
Date: Wed Aug 17 11:03:28 2011
New Revision: 1158625

URL: http://svn.apache.org/viewvc?rev=1158625&view=rev
Log:
The RuntimeInvoker currently swallows exceptions with a TODO comment, update 
this to at least do a printStackTrace so there is some hint somehting went wrong

Modified:
    
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java

Modified: 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java?rev=1158625&r1=1158624&r2=1158625&view=diff
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java
 (original)
+++ 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java
 Wed Aug 17 11:03:28 2011
@@ -82,6 +82,7 @@ public class RuntimeInvoker implements I
             
((InvokerAsyncRequest)invocable.getBindingInvocationChain().getHeadInvoker()).invokeAsyncRequest(msg);
         } catch (Throwable t ) {
                // TODO - consider what best to do with exception
+            t.printStackTrace();
         } finally {
             ThreadMessageContext.setMessageContext(context);
         } // end try


Reply via email to