Skip to content

Commit 9641731

Browse files
committed
Remove use of .clear_poison because it is not stable in 1.75
Signed-off-by: Michael X. Grey <[email protected]>
1 parent 0715c5f commit 9641731

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

rclrs/src/action/action_server.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ impl<A: Action> ActionServerState<A> {
220220
};
221221

222222
*dispatch = GoalDispatch::Callback(callback);
223-
self.board.dispatch.clear_poison();
224223
}
225224

226225
/// Change this action server into an action goal receiver, which may be more
@@ -341,7 +340,6 @@ impl<A: Action> ActionServerState<A> {
341340
};
342341

343342
*dispatch = GoalDispatch::Sender(sender);
344-
self.board.dispatch.clear_poison();
345343
}
346344

347345
/// Used internally to change a receiver into an action server without the
@@ -375,7 +373,6 @@ impl<A: Action> ActionServerState<A> {
375373
}
376374

377375
*dispatch = GoalDispatch::Callback(callback);
378-
self.board.dispatch.clear_poison();
379376
}
380377
}
381378

0 commit comments

Comments
 (0)