Skip to content
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

Fixed zenoh cli mapping error #552

Draft
wants to merge 1 commit into
base: rolling
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions test_cli_remapping/test/name_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ def __init__(self):

if __name__ == '__main__':
try:
with rclpy.init():
node = NameMaker()
rclpy.spin(node)
rclpy.init()
node = NameMaker()
rclpy.spin(node)
rclpy.shutdown()
Comment on lines +40 to +43
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This shouldn't be necessary; leaving the rclpy.init context should automatically call the shutdown. If that isn't working, then there is a bug somewhere else.

except (KeyboardInterrupt, ExternalShutdownException):
print('Shutting down name_maker.py')