Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
proton-0.10
-
None
Description
E.g.
from proton.reactor import Reactor
class Print(object):
def on_unhandled(self, name, event):
print("%s %s" % (name, event))
while True:
reactor = Reactor()
reactor.handler = Print()
reactor.start()
reactor.stop()
Will grow in memory and eventually crash. On debugging the reactor is never finalised.