You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by lh...@apache.org on 2008/09/11 09:46:40 UTC

svn commit: r694162 - /servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java

Author: lhein
Date: Thu Sep 11 00:46:40 2008
New Revision: 694162

URL: http://svn.apache.org/viewvc?rev=694162&view=rev
Log:
- changed timeout to default value 0 which means no time out at all

Modified:
    servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java

Modified: servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java?rev=694162&r1=694161&r2=694162&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java (original)
+++ servicemix/components/bindings/servicemix-cxf-bc/trunk/src/main/java/org/apache/servicemix/cxfbc/CxfBcConsumer.java Thu Sep 11 00:46:40 2008
@@ -144,10 +144,7 @@
 
     private String locationURI;
 
-    private long timeout = 60l * 60l * 1000l; //     60 minutes 
-                                              // *   60 seconds 
-                                              // * 1000 millis
-                                              // = 1 hour timeout as default
+    private long timeout = 0; // default is NO_TIMEOUT
 
     private boolean useJBIWrapper = true;
     private EndpointInfo ei;