You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2009/04/02 09:39:59 UTC

svn commit: r761191 - /camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java

Author: ningjiang
Date: Thu Apr  2 07:39:59 2009
New Revision: 761191

URL: http://svn.apache.org/viewvc?rev=761191&view=rev
Log:
CAMEL-1509 Set the DeadLetterChannel's timer to deamon thread

Modified:
    camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java

Modified: camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java?rev=761191&r1=761190&r2=761191&view=diff
==============================================================================
--- camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java (original)
+++ camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java Thu Apr  2 07:39:59 2009
@@ -53,7 +53,7 @@
     private static final transient Log LOG = LogFactory.getLog(DeadLetterChannel.class);
     private static final String FAILURE_HANDLED_PROPERTY = DeadLetterChannel.class.getName() + ".FAILURE_HANDLED";
 
-    private static Timer timer = new Timer();
+    private static Timer timer = new Timer("Camel DeadLetterChannel Redeliver Timer", true);
     private Processor output;
     private Processor deadLetter;
     private AsyncProcessor outputAsync;