You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2020/03/04 08:58:01 UTC

[camel] 16/32: Revert "Remove references to error handler and event driven processors once creation is finished"

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit bd91ab6a2eda8f31cfbbd65bece6481e9037a5bf
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Tue Mar 3 20:07:06 2020 +0100

    Revert "Remove references to error handler and event driven processors once creation is finished"
    
    This reverts commit 463fcd11c7bcdd3b8d7bdc3301dbce39674c1168.
---
 .../src/main/java/org/apache/camel/impl/engine/DefaultRoute.java       | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultRoute.java b/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultRoute.java
index c52c690..47f6602 100644
--- a/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultRoute.java
+++ b/core/camel-base/src/main/java/org/apache/camel/impl/engine/DefaultRoute.java
@@ -613,7 +613,6 @@ public class DefaultRoute extends ServiceSupport implements Route {
     }
 
     public void initialized() {
-        errorHandlers.clear();
-        eventDrivenProcessors.clear();
+
     }
 }