-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix memory leak in ESPHome disconnect callbacks #104149
Conversation
There were two problems here: - The disconnect callbacks were not cleared after they were called so the references were still held which means anything holding a reference to them could end up holding it forever - In the BLE client we did not remove the callback when the ble device disconnected, only when the ESP itself disconnected
Hey there @OttoWinter, @jesserockz, @kbx81, mind taking a look at this pull request as it has been labeled with an integration ( Code owner commandsCode owners of
|
need to make a copy |
objgraph looks good. leaks are fixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @bdraco 👍
../Frenck
Thanks |
needs #104146Proposed change
There were two problems here:
The disconnect callbacks were not cleared (A new list was created instead) after they were called so the references were still held which means anything holding a reference to them could end up holding it forever.
In the BLE client we did not remove the callback when the ble device disconnected, only when the ESP itself disconnected. This prevented used BLE clients from being garbage collected until the ESP disconnected.
Type of change
Additional information
Checklist
black --fast homeassistant tests
)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest
.requirements_all.txt
.Updated by running
python3 -m script.gen_requirements_all
..coveragerc
.To help with the load of incoming pull requests: