You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2021/11/12 23:02:18 UTC

[camel] 02/03: Fixed example

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

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

commit d3ce7fe2a43c311d286bf60b5e40a23db3a9df04
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Fri Nov 12 23:51:10 2021 +0100

    Fixed example
---
 .../apache/camel/component/quickfixj/examples/RequestReplyExample.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-quickfix/src/test/java/org/apache/camel/component/quickfixj/examples/RequestReplyExample.java b/components/camel-quickfix/src/test/java/org/apache/camel/component/quickfixj/examples/RequestReplyExample.java
index 3fec649..ce14244 100644
--- a/components/camel-quickfix/src/test/java/org/apache/camel/component/quickfixj/examples/RequestReplyExample.java
+++ b/components/camel-quickfix/src/test/java/org/apache/camel/component/quickfixj/examples/RequestReplyExample.java
@@ -80,7 +80,7 @@ public class RequestReplyExample {
                 // order status being delivered using the json printer.
                 from("quickfix:examples/inprocess.cfg?sessionID=FIX.4.2:MARKET->TRADER&exchangePattern=InOut")
                         .filter(header(QuickfixjEndpoint.MESSAGE_TYPE_KEY).isEqualTo(MsgType.ORDER_STATUS_REQUEST))
-                        .to("log://OrderStatusRequestLog?showAll=true&showOut=true&multiline=true")
+                        .to("log://OrderStatusRequestLog?showAll=true&multiline=true")
                         .bean(new MarketOrderStatusService())
                         .bean(new QuickfixjMessageJsonPrinter());