Skip to content

Commit

Permalink
Fixed scenario runner node shutdown (#629)
Browse files Browse the repository at this point in the history
* Fix scenario runner node for foxy

* CHANGELOG updated
  • Loading branch information
joel-mb committed Jul 21, 2022
1 parent 4f52fe6 commit f47454a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Latest changed

* Fixed scenario runner node shutdown for foxy
* Fixed actor synchronization creation
* Fix of scenario runner status

## CARLA-ROS-Bridge 0.9.11
Expand Down
2 changes: 1 addition & 1 deletion carla_ad_demo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ elseif(${ROS_VERSION} EQUAL 2)

find_package(ament_cmake REQUIRED)

install(DIRECTORY config/ DESTINATION share/${PROJECT_NAME})
install(DIRECTORY config/ DESTINATION share/${PROJECT_NAME}/config)

install(DIRECTORY launch/ DESTINATION share/${PROJECT_NAME})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,16 +176,16 @@ def main(args=None):
try:
scenario_runner.run()
except KeyboardInterrupt:
loginfo("User requested shut down.")
scenario_runner.loginfo("User requested shut down.")
finally:
if scenario_runner._scenario_runner.is_running():
scenario_runner.loginfo("Scenario Runner still running. Shutting down.")
scenario_runner._scenario_runner.shutdown()
del scenario_runner
if ROS_VERSION == 2:
spin_thread.join()

roscomp.shutdown()
if ROS_VERSION == 2:
spin_thread.join()


if __name__ == "__main__":
Expand Down

0 comments on commit f47454a

Please sign in to comment.