Ganesh Murthy created DISPATCH-900:
--------------------------------------

             Summary: Memory leak when repeatedly opening and closing 
connections
                 Key: DISPATCH-900
                 URL: https://issues.apache.org/jira/browse/DISPATCH-900
             Project: Qpid Dispatch
          Issue Type: Bug
          Components: Container
    Affects Versions: 1.0.0
            Reporter: Ganesh Murthy
            Assignee: Ganesh Murthy
             Fix For: 1.0.0


Steps to reproduce - 

1. Start the router with the default config file
2. Run the following python program which simply opens and closes connections.
{noformat}
from uuid import uuid4
from proton.utils import BlockingConnection
URL = '0.0.0.0:5672'
continue_loop = True
while continue_loop:
    connection = BlockingConnection(url=URL, ssl_domain=None)
    print 'Creating connection'
    connection.close()
{noformat}
3. While the above python program is running, start up top and watch the memory 
of the router grow.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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

Reply via email to