Skip to content

Commit

Permalink
fix(autoware_carla_interface): fix lidar topic name (#9645)
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
  • Loading branch information
maxime-clem authored Jan 6, 2025
1 parent 4a181d6 commit ca2d4e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(self):
elif sensor["type"] == "sensor.lidar.ray_cast":
if sensor["id"] in self.sensor_frequencies:
self.pub_lidar[sensor["id"]] = self.ros2_node.create_publisher(
PointCloud2, f'/sensing/lidar/{sensor["id"]}/pointcloud', 10
PointCloud2, f'/sensing/lidar/{sensor["id"]}/pointcloud_before_sync', 10
)
else:
self.ros2_node.get_logger().info(
Expand Down

0 comments on commit ca2d4e7

Please sign in to comment.