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
There's a lot of potential for double-mutability here with &mut self in handle. We should either take the reference when a signal is being handled and replace it when finished or use &self.
The text was updated successfully, but these errors were encountered:
Signals don't really "finish", all signal handling we do (not in bolts, but in their respective users) will quit execution after the signal handler, so at least they never borrow mutably twice. The mutable reference moves into the signal handler in this case.
There's a lot of potential for double-mutability here with
&mut self
inhandle
. We should either take the reference when a signal is being handled and replace it when finished or use&self
.The text was updated successfully, but these errors were encountered: