summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-08-17 11:03:28 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-08-17 11:03:28 +0000
commit70b0286aea824a52bf789e715466bf8c3344aae1 (patch)
treee333653b49b56897a687208eb2c48228cfaba94b
parent650058d314d4de25e9cd193b1e58f0f2e20f698c (diff)
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
-rw-r--r--sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java1
1 files changed, 1 insertions, 0 deletions
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