[
https://issues.jboss.org/browse/JBESB-3822?page=com.atlassian.jira.plugin...
]
RH Bugzilla Integration commented on JBESB-3822:
------------------------------------------------
Rick Wagner <rwagner(a)redhat.com> made a comment on [bug
836234|https://bugzilla.redhat.com/show_bug.cgi?id=836234]
There is a test for rolling back all exceptions, currently enabled by default, however
this code has an issue.
It currently reads
problem = rollbackOnPipelineFaults && !pipeline.process(_pipelineMessage);
which means that the pipeline will only be executed if rollbackOnPipelineFaults is true.
The line should read:
problem = rollbackOnPipelineFaults & !pipeline.process(_pipelineMessage);
(note use of & rather than &&)
Invalid logical operator used within MessageAwareListener
---------------------------------------------------------
Key: JBESB-3822
URL:
https://issues.jboss.org/browse/JBESB-3822
Project: JBoss ESB
Issue Type: Feature Request
Security Level: Public(Everyone can see)
Components: Rosetta
Affects Versions: 4.11
Reporter: Kevin Conner
There is a test for rolling back all exceptions, currently enabled by default, however
this code has an issue.
It currently reads
problem = rollbackOnPipelineFaults && !pipeline.process(_pipelineMessage);
which means that the pipeline will only be executed if rollbackOnPipelineFaults is true.
The line *should* read
problem = rollbackOnPipelineFaults & !pipeline.process(_pipelineMessage);
(note use of & rather than &&)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira