-
Notifications
You must be signed in to change notification settings - Fork 0
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
Panic while running the nav2 #26
Comments
The crash comes from https://github.com/gazebosim/ros_gz/blob/ros2/ros_gz_sim/src/create.cpp I guess there is no ownership of Zenoh session after leaving main func. Then Zenoh session is released, so we can't shudown it in the deconstructor. |
This is the gdb backtrace and it seems like if we don't shutdown explicitly, it will be called in atexit. |
Add |
Fixed by #37 |
We can have a workaround by commenting the
z_close
for the time being.The text was updated successfully, but these errors were encountered: