File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
carla_ros_scenario_runner/src/carla_ros_scenario_runner Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11## Latest changed
22
3+ * Fixed scenario runner node shutdown for foxy
4+ * Fixed actor synchronization creation
35* Fix of scenario runner status
46
57## CARLA-ROS-Bridge 0.9.11
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ elseif(${ROS_VERSION} EQUAL 2)
2626
2727 find_package (ament_cmake REQUIRED)
2828
29- install (DIRECTORY config/ DESTINATION share/${PROJECT_NAME} )
29+ install (DIRECTORY config/ DESTINATION share/${PROJECT_NAME} /config )
3030
3131 install (DIRECTORY launch/ DESTINATION share/${PROJECT_NAME} )
3232
Original file line number Diff line number Diff line change @@ -176,16 +176,16 @@ def main(args=None):
176176 try :
177177 scenario_runner .run ()
178178 except KeyboardInterrupt :
179- loginfo ("User requested shut down." )
179+ scenario_runner . loginfo ("User requested shut down." )
180180 finally :
181181 if scenario_runner ._scenario_runner .is_running ():
182182 scenario_runner .loginfo ("Scenario Runner still running. Shutting down." )
183183 scenario_runner ._scenario_runner .shutdown ()
184184 del scenario_runner
185- if ROS_VERSION == 2 :
186- spin_thread .join ()
187185
188186 roscomp .shutdown ()
187+ if ROS_VERSION == 2 :
188+ spin_thread .join ()
189189
190190
191191if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments