You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by ms...@apache.org on 2007/01/29 17:59:19 UTC

svn commit: r501107 - /incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java

Author: mszefler
Date: Mon Jan 29 08:59:18 2007
New Revision: 501107

URL: http://svn.apache.org/viewvc?view=rev&rev=501107
Log:
Removed catch of runtime exceptions in ASSIGN (was preventing normal TX rollback in case of deadlock).

Modified:
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java?view=diff&rev=501107&r1=501106&r2=501107
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/ASSIGN.java Mon Jan 29 08:59:18 2007
@@ -80,11 +80,6 @@
                 faultData = createFault(fault.getQName(), aCopy, fault
                         .getMessage());
                 break;
-            } catch (Exception ex) {
-                __log.fatal("Unexpected exception in assignment, terminating process", ex);
-                instance(ASSIGN.this);
-                getBpelRuntimeContext().terminate();
-                break;
             }
         }