You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2004/12/05 05:26:29 UTC

svn commit: r109853 - /geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java

Author: djencks
Date: Sat Dec  4 20:26:28 2004
New Revision: 109853

URL: http://svn.apache.org/viewcvs?view=rev&rev=109853
Log:
since the tx timeout is now used, we better make the default value correct
Modified:
   geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java

Modified: geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java
Url: http://svn.apache.org/viewcvs/geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java?view=diff&rev=109853&p1=geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java&r1=109852&p2=geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java&r2=109853
==============================================================================
--- geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java	(original)
+++ geronimo/branches/djencks/jetty-deployer1/trunk/specs/j2ee-connector/src/java/javax/resource/spi/work/ExecutionContext.java	Sat Dec  4 20:26:28 2004
@@ -34,7 +34,7 @@
  */
 public class ExecutionContext {
     private Xid xid;
-    private long timeout = -1;
+    private long timeout = 0;
 
     public ExecutionContext() {
     }