[ https://issues.apache.org/jira/browse/CAMEL-9215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14952916#comment-14952916 ]
Henrik commented on CAMEL-9215: ------------------------------- It was suggested on the mailing list that I could rearrange my steps. Not ideal, and I need to test this some more, but it seems to work for now. {code} onException(someException) .handled(true) .wireTap(someUri) .newExchange(someProcessor) .end() .bean(someBean); {code} > Missing .handled(true) in Camel 2.16.0 > -------------------------------------- > > Key: CAMEL-9215 > URL: https://issues.apache.org/jira/browse/CAMEL-9215 > Project: Camel > Issue Type: Bug > Components: camel-core > Affects Versions: 2.16.0 > Reporter: Henrik > > This worked in 2.15.x: > RoutesDefinition routeDef = someRouteDef(); > routeDef.onException(someException) > .wireTap(someUri) > .newExchange(someProcessor) > .end() > .handled(true) > .bean(someBean); > But in 2.16.0 it seems like .handled(..) isn't available anymore. Any > suggestions on how to mark this as handled now? -- This message was sent by Atlassian JIRA (v6.3.4#6332)