[jira] [Updated] (PROTON-323) Regression: Messenger sends null in disposition state after accept

2013-10-17 Thread Rafael H. Schloming (JIRA)

 [ 
https://issues.apache.org/jira/browse/PROTON-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rafael H. Schloming updated PROTON-323:
---

Fix Version/s: 0.6

 Regression: Messenger sends null in disposition state after accept
 

 Key: PROTON-323
 URL: https://issues.apache.org/jira/browse/PROTON-323
 Project: Qpid Proton
  Issue Type: Bug
  Components: proton-c
Reporter: Ted Ross
Priority: Blocker
 Fix For: 0.6


 Using the following Python code snippet:
 from proton import *
 mng = Messenger()
 mng.start()
 mng.subscribe(amqp://0.0.0.0/Queue_1)
 mng.timeout=100
 mng.recv()
 msg = Message()
 t = mng.get(msg)
 mng.accept(t)
 mng.stop()
 The following trace is seen after the call to stop:
 [0xf7f6a0:1] - DISPOSITION @21 [true, 0, 0, true, null]
 On Proton 0.4, this problem does not exist.  The trace is:
 [0x1087bb0:1] - DISPOSITION @21 [true, 0, 0, true, @36 []]



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (PROTON-323) Regression: Messenger sends null in disposition state after accept

2013-10-17 Thread Ted Ross (JIRA)

 [ 
https://issues.apache.org/jira/browse/PROTON-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Ross updated PROTON-323:


Assignee: Rafael H. Schloming

 Regression: Messenger sends null in disposition state after accept
 

 Key: PROTON-323
 URL: https://issues.apache.org/jira/browse/PROTON-323
 Project: Qpid Proton
  Issue Type: Bug
  Components: proton-c
Reporter: Ted Ross
Assignee: Rafael H. Schloming
Priority: Blocker
 Fix For: 0.6


 Using the following Python code snippet:
 from proton import *
 mng = Messenger()
 mng.start()
 mng.subscribe(amqp://0.0.0.0/Queue_1)
 mng.timeout=100
 mng.recv()
 msg = Message()
 t = mng.get(msg)
 mng.accept(t)
 mng.stop()
 The following trace is seen after the call to stop:
 [0xf7f6a0:1] - DISPOSITION @21 [true, 0, 0, true, null]
 On Proton 0.4, this problem does not exist.  The trace is:
 [0x1087bb0:1] - DISPOSITION @21 [true, 0, 0, true, @36 []]



--
This message was sent by Atlassian JIRA
(v6.1#6144)


[jira] [Updated] (PROTON-323) Regression: Messenger sends null in disposition state after accept

2013-09-03 Thread Rafael H. Schloming (JIRA)

 [ 
https://issues.apache.org/jira/browse/PROTON-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rafael H. Schloming updated PROTON-323:
---

Fix Version/s: (was: 0.5)

 Regression: Messenger sends null in disposition state after accept
 

 Key: PROTON-323
 URL: https://issues.apache.org/jira/browse/PROTON-323
 Project: Qpid Proton
  Issue Type: Bug
  Components: proton-c
Reporter: Ted Ross
Priority: Blocker

 Using the following Python code snippet:
 from proton import *
 mng = Messenger()
 mng.start()
 mng.subscribe(amqp://0.0.0.0/Queue_1)
 mng.timeout=100
 mng.recv()
 msg = Message()
 t = mng.get(msg)
 mng.accept(t)
 mng.stop()
 The following trace is seen after the call to stop:
 [0xf7f6a0:1] - DISPOSITION @21 [true, 0, 0, true, null]
 On Proton 0.4, this problem does not exist.  The trace is:
 [0x1087bb0:1] - DISPOSITION @21 [true, 0, 0, true, @36 []]

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


[jira] [Updated] (PROTON-323) Regression: Messenger sends null in disposition state after accept

2013-05-31 Thread Ted Ross (JIRA)

 [ 
https://issues.apache.org/jira/browse/PROTON-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Ross updated PROTON-323:


Priority: Blocker  (was: Major)

 Regression: Messenger sends null in disposition state after accept
 

 Key: PROTON-323
 URL: https://issues.apache.org/jira/browse/PROTON-323
 Project: Qpid Proton
  Issue Type: Bug
  Components: proton-c
Reporter: Ted Ross
Priority: Blocker



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


[jira] [Updated] (PROTON-323) Regression: Messenger sends null in disposition state after accept

2013-05-31 Thread Ted Ross (JIRA)

 [ 
https://issues.apache.org/jira/browse/PROTON-323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Ross updated PROTON-323:


Description: 
Using the following Python code snippet:

from proton import *
mng = Messenger()
mng.start()
mng.subscribe(amqp://0.0.0.0/Queue_1)
mng.timeout=100
mng.recv()
msg = Message()
t = mng.get(msg)
mng.accept(t)
mng.stop()

The following trace is seen after the call to stop:

[0xf7f6a0:1] - DISPOSITION @21 [true, 0, 0, true, null]

On Proton 0.4, this problem does not exist.  The trace is:

[0x1087bb0:1] - DISPOSITION @21 [true, 0, 0, true, @36 []]

 Regression: Messenger sends null in disposition state after accept
 

 Key: PROTON-323
 URL: https://issues.apache.org/jira/browse/PROTON-323
 Project: Qpid Proton
  Issue Type: Bug
  Components: proton-c
Reporter: Ted Ross
Priority: Blocker

 Using the following Python code snippet:
 from proton import *
 mng = Messenger()
 mng.start()
 mng.subscribe(amqp://0.0.0.0/Queue_1)
 mng.timeout=100
 mng.recv()
 msg = Message()
 t = mng.get(msg)
 mng.accept(t)
 mng.stop()
 The following trace is seen after the call to stop:
 [0xf7f6a0:1] - DISPOSITION @21 [true, 0, 0, true, null]
 On Proton 0.4, this problem does not exist.  The trace is:
 [0x1087bb0:1] - DISPOSITION @21 [true, 0, 0, true, @36 []]

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