Return-Path: Delivered-To: apmail-ode-commits-archive@www.apache.org Received: (qmail 55466 invoked from network); 21 Oct 2007 18:45:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Oct 2007 18:45:05 -0000 Received: (qmail 31055 invoked by uid 500); 21 Oct 2007 18:44:52 -0000 Delivered-To: apmail-ode-commits-archive@ode.apache.org Received: (qmail 31036 invoked by uid 500); 21 Oct 2007 18:44:52 -0000 Mailing-List: contact commits-help@ode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ode.apache.org Delivered-To: mailing list commits@ode.apache.org Received: (qmail 31027 invoked by uid 99); 21 Oct 2007 18:44:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2007 11:44:52 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Oct 2007 18:45:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9867E1A9832; Sun, 21 Oct 2007 11:44:14 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r586931 - /ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java Date: Sun, 21 Oct 2007 18:44:14 -0000 To: commits@ode.apache.org From: vanto@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071021184414.9867E1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vanto Date: Sun Oct 21 11:44:13 2007 New Revision: 586931 URL: http://svn.apache.org/viewvc?rev=586931&view=rev Log: event listener may throw exceptions, even in 1.1 Modified: ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java Modified: ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java?rev=586931&r1=586930&r2=586931&view=diff ============================================================================== --- ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java (original) +++ ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java Sun Oct 21 11:44:13 2007 @@ -419,12 +419,7 @@ // Note that the eventListeners list is a copy-on-write array, so need // to mess with synchronization. for (org.apache.ode.bpel.iapi.BpelEventListener l : _contexts.eventListeners) { - try { - l.onEvent(event); - } catch (Throwable t) { - // catch all possible exceptions - __log.warn("Got an exception while notifying BpelEventListener '" + l + "'.", t); - } + l.onEvent(event); } }