Closed bdraco closed 2 years ago
There is a risk of leaking since self.loop.call_later(1, self.broadcast_registration) keeps calling and if self.transport is never cleared it will run as long as the object exists
self.loop.call_later(1, self.broadcast_registration)
self.transport
There is a risk of leaking since
self.loop.call_later(1, self.broadcast_registration)
keeps calling and ifself.transport
is never cleared it will run as long as the object exists