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 2012/12/14 10:51:43 UTC

svn commit: r1421769 - in /camel/branches/camel-2.10.x: ./ camel-core/src/main/java/org/apache/camel/builder/AdviceWithTasks.java tests/camel-itest/src/test/java/org/apache/camel/itest/issues/AdviceWithWeaveFirstLastTest.java

Author: ningjiang
Date: Fri Dec 14 09:51:42 2012
New Revision: 1421769

URL: http://svn.apache.org/viewvc?rev=1421769&view=rev
Log:
 CAMEL-5875 Fixed the weaveFirst/weaveLast not working issue before the camel context is started
Merged revisions 1421764 via svnmerge from 
https://svn.apache.org/repos/asf/camel/trunk

........
  r1421764 | ningjiang | 2012-12-14 17:29:28 +0800 (Fri, 14 Dec 2012) | 1 line
  
  CAMEL-5875 Fixed the weaveFirst/weaveLast not working issue before the camel context is started
........

Added:
    camel/branches/camel-2.10.x/tests/camel-itest/src/test/java/org/apache/camel/itest/issues/AdviceWithWeaveFirstLastTest.java
      - copied unchanged from r1421764, camel/trunk/tests/camel-itest/src/test/java/org/apache/camel/itest/issues/AdviceWithWeaveFirstLastTest.java
Modified:
    camel/branches/camel-2.10.x/   (props changed)
    camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/builder/AdviceWithTasks.java

Propchange: camel/branches/camel-2.10.x/
------------------------------------------------------------------------------
  Merged /camel/trunk:r1421764

Propchange: camel/branches/camel-2.10.x/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/builder/AdviceWithTasks.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/builder/AdviceWithTasks.java?rev=1421769&r1=1421768&r2=1421769&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/builder/AdviceWithTasks.java (original)
+++ camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/builder/AdviceWithTasks.java Fri Dec 14 09:51:42 2012
@@ -66,6 +66,10 @@ public final class AdviceWithTasks {
         }
 
         public boolean match(ProcessorDefinition<?> processor) {
+            if (id.equals("*")) {
+                // make sure the processor which id isn't be set is matched.
+                return true;
+            }
             return EndpointHelper.matchPattern(processor.getId(), id);
         }
     }