You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix shutdown ordering in DeviceController. (#7430)
Before this fix we would tear down some things (importantly the secure
session manager) before starting shutdown of the network layer. This
would lead to a window of time during which we can still receive
messages while in a partially torn down state, which would leave to
crashes.
Moving network layer shutdown, and in particular platform manager
shutdown, to be first in the shutdown sequence ensures this can't
happen by shutting down the message processing thread before we tear
down any other state.
Fixes#7297
0 commit comments