Ganesh Murthy created DISPATCH-1391:
---------------------------------------

             Summary: Proton link reference not cleared on router link objects 
during session close
                 Key: DISPATCH-1391
                 URL: https://issues.apache.org/jira/browse/DISPATCH-1391
             Project: Qpid Dispatch
          Issue Type: Improvement
          Components: Container
    Affects Versions: 1.8.0
            Reporter: Ganesh Murthy
            Assignee: Ganesh Murthy
             Fix For: 1.9.0


When the following program is run against the router, it  crashes -
{noformat}
from proton.utils import BlockingConnection
from time import sleep

ROUTER_ADDRESS = "amqp://127.0.0.1:5672"
RECEIVER_ADDRESS = "examples-receiver"

c = BlockingConnection(ROUTER_ADDRESS)
count = 0

while True:
    count += 1
    r = c.create_receiver(RECEIVER_ADDRESS + str(count))
    r.session.close()
    if count == 5:
        break
{noformat}
This is happening because the pn_link references are not cleaned up on router 
link object (qd_link_t)



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org

Reply via email to