[
https://issues.apache.org/jira/browse/CAMEL-23012?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Claus Ibsen updated CAMEL-23012:
--------------------------------
Fix Version/s: 4.18.1
> camel-jbang - Resequence EIP route dump to YAML is wrong for batch config
> -------------------------------------------------------------------------
>
> Key: CAMEL-23012
> URL: https://issues.apache.org/jira/browse/CAMEL-23012
> Project: Camel
> Issue Type: Bug
> Components: camel-jbang
> Reporter: Claus Ibsen
> Assignee: Claus Ibsen
> Priority: Minor
> Fix For: 4.18.1, 4.19.0
>
>
> This is correct
> {code:java}
> - route:
> from:
> uri: jms:queue:foo
> steps:
> - resequence:
> expression:
> header:
> expression: JMSPriority
> batchConfig:
> reverse: "true"
> allowDuplicates: "true"
> batchTimeout: 3000
> steps:
> - to:
> uri: mock:result
> {code}
>
> And this is wrong (generated)
> {code:java}
> - route:
> from:
> uri: jms:queue:foo
> steps:
> - resequence:
> expression:
> header:
> expression: JMSPriority
> steps:
> - batchConfig:
> reverse: "true"
> allowDuplicates: "true"
> batchTimeout: 3000
> - to:
> uri: mock:result {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)