You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Henrik (JIRA)" <ji...@apache.org> on 2015/10/12 12:50:05 UTC

[jira] [Commented] (CAMEL-9215) Missing .handled(true) in Camel 2.16.0

    [ 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)