From 70b0286aea824a52bf789e715466bf8c3344aae1 Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 17 Aug 2011 11:03:28 +0000 Subject: 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 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1158625 13f79535-47bb-0310-9956-ffa450edef68 --- .../main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java | 1 + 1 file changed, 1 insertion(+) diff --git a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java index a9b93ae2e8..8f093d62ed 100644 --- a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java +++ b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java @@ -82,6 +82,7 @@ public class RuntimeInvoker implements Invoker, InvokerAsyncRequest { ((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 -- cgit v1.2.3