You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2009/09/06 07:53:26 UTC

svn commit: r811764 - /tuscany/java/sca/modules/implementation-bpel-runtime/src/main/java/org/apache/tuscany/sca/implementation/bpel/ode/provider/BPELInvoker.java

Author: lresende
Date: Sun Sep  6 05:53:25 2009
New Revision: 811764

URL: http://svn.apache.org/viewvc?rev=811764&view=rev
Log:
TUSCANY-2995 - Increasing invocation timeout to 2 seconds

Modified:
    tuscany/java/sca/modules/implementation-bpel-runtime/src/main/java/org/apache/tuscany/sca/implementation/bpel/ode/provider/BPELInvoker.java

Modified: tuscany/java/sca/modules/implementation-bpel-runtime/src/main/java/org/apache/tuscany/sca/implementation/bpel/ode/provider/BPELInvoker.java
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/implementation-bpel-runtime/src/main/java/org/apache/tuscany/sca/implementation/bpel/ode/provider/BPELInvoker.java?rev=811764&r1=811763&r2=811764&view=diff
==============================================================================
--- tuscany/java/sca/modules/implementation-bpel-runtime/src/main/java/org/apache/tuscany/sca/implementation/bpel/ode/provider/BPELInvoker.java (original)
+++ tuscany/java/sca/modules/implementation-bpel-runtime/src/main/java/org/apache/tuscany/sca/implementation/bpel/ode/provider/BPELInvoker.java Sun Sep  6 05:53:25 2009
@@ -58,7 +58,7 @@
  * @version $Rev$ $Date$
  */
 public class BPELInvoker implements Invoker {
-	private final static long TIME_OUT = 500L;
+	private final static long TIME_OUT = 2000L;
 	
     protected final Log __log = LogFactory.getLog(getClass());