Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 53C8B180EA for ; Fri, 4 Dec 2015 13:16:53 +0000 (UTC) Received: (qmail 81561 invoked by uid 500); 4 Dec 2015 13:16:43 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 81423 invoked by uid 500); 4 Dec 2015 13:16:43 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 81400 invoked by uid 99); 4 Dec 2015 13:16:43 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Dec 2015 13:16:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 906ABE67F3; Fri, 4 Dec 2015 13:16:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Fri, 04 Dec 2015 13:16:45 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [3/3] camel git commit: CAMEL-9389: Introduce a MessageHistoryFactory CAMEL-9389: Introduce a MessageHistoryFactory Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/0c969398 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0c969398 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0c969398 Branch: refs/heads/master Commit: 0c9693980c7c2049d8bf6744ca75185c59c54158 Parents: 0b00fda Author: Claus Ibsen Authored: Fri Dec 4 13:03:02 2015 +0000 Committer: Claus Ibsen Committed: Fri Dec 4 13:03:02 2015 +0000 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/impl/DefaultCamelContext.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/0c969398/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java b/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java index b43193a..d0adc96 100644 --- a/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java +++ b/camel-core/src/main/java/org/apache/camel/impl/DefaultCamelContext.java @@ -2955,6 +2955,7 @@ public class DefaultCamelContext extends ServiceSupport implements ModelCamelCon addService(shutdownStrategy); addService(packageScanClassResolver); addService(restRegistry); + addService(messageHistoryFactory); if (runtimeEndpointRegistry != null) { if (runtimeEndpointRegistry instanceof EventNotifier) {