[
https://issues.apache.org/jira/browse/PROTON-87?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13479021#comment-13479021
]
Rajith Attapattu commented on PROTON-87:
----------------------------------------
Also if I'm not mistaken, the originalPayload is never set, its always null.
+ ByteBuffer originalPayload = null;
+ if( payload!=null ) {
+ payload = payload.duplicate();
+ }
+
So it should be
+ ByteBuffer originalPayload = null;
+ if( payload!=null ) {
+ originalPayload = payload.duplicate();
+ }
+
> Support plugging in a protocol tracer into the transport
> --------------------------------------------------------
>
> Key: PROTON-87
> URL: https://issues.apache.org/jira/browse/PROTON-87
> Project: Qpid Proton
> Issue Type: Bug
> Components: proton-j
> Reporter: Hiram Chirino
> Attachments: PROTON-87.patch
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira