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/13 15:55:25 UTC

[camel] branch master updated: Do not use immutable context by default

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


The following commit(s) were added to refs/heads/master by this push:
     new dc262a7  Do not use immutable context by default
dc262a7 is described below

commit dc262a7b09f609dd41351a19877f314686e55344
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Fri Mar 13 16:54:48 2020 +0100

    Do not use immutable context by default
---
 core/camel-core/src/test/java/org/apache/camel/ContextTestSupport.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/ContextTestSupport.java b/core/camel-core/src/test/java/org/apache/camel/ContextTestSupport.java
index cae2fed..15ff8c0 100644
--- a/core/camel-core/src/test/java/org/apache/camel/ContextTestSupport.java
+++ b/core/camel-core/src/test/java/org/apache/camel/ContextTestSupport.java
@@ -44,7 +44,7 @@ public abstract class ContextTestSupport extends TestSupport {
     protected volatile ConsumerTemplate consumer;
     protected volatile NotifyBuilder oneExchangeDone;
     private boolean useRouteBuilder = true;
-    private boolean useImmutableContext = true;
+    private boolean useImmutableContext = false;
     private Service camelContextService;
 
     /**