Skip to content

Commit

Permalink
Fixes ActionService
Browse files Browse the repository at this point in the history
  • Loading branch information
klpanagi committed Dec 20, 2024
1 parent d0c62dc commit 8cf2920
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions commlib/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,10 @@ def stop(self):
self._cancel_rpc.stop()
if self._result_rpc is not None:
self._result_rpc.stop()
if self._status_pub is not None:
self._status_pub.stop()
if self._feedback_pub is not None:
self._feedback_pub.stop()

def _handle_send_goal(self, msg: _ActionGoalMessage.Request):
"""_handle_send_goal.
Expand Down

0 comments on commit 8cf2920

Please sign in to comment.