Skip to content

Commit 4e2ff6a

Browse files
authored
Merge pull request #274 from HannesBachter/fix/rename_scan_odom
rename scan odom to /scan_odom_node/scan_odom/odometry
2 parents 797b0a5 + 3279625 commit 4e2ff6a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ env:
1818
matrix:
1919
- ROS_DISTRO=melodic
2020
- ROS_DISTRO=noetic
21+
matrix:
22+
allow_failures:
23+
- env: ROS_DISTRO=melodic
2124
install:
2225
- git clone --quiet --depth 1 https://github.com/ros-industrial/industrial_ci.git .industrial_ci -b master
2326
script:

cob_hardware_emulation/scripts/emulation_odom_laser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, odom_frame):
1717
# - subscribers:
1818
# - /base/odometry_controller/odometry [nav_msgs/Odometry]
1919
# - publishers:
20-
# - /scan_odom_node/scan_odom/scan_matcher_odom [nav_msgs/Odometry]
20+
# - /scan_odom_node/scan_odom/odometry [nav_msgs/Odometry]
2121
# - tf (map --> odom_frame)
2222

2323

@@ -27,7 +27,7 @@ def __init__(self, odom_frame):
2727
self._odom_frame = odom_frame
2828

2929
rospy.Subscriber("/base/odometry_controller/odometry", Odometry, self.odometry_callback, queue_size=1)
30-
self._odom_publisher = rospy.Publisher("/scan_odom_node/scan_odom/scan_matcher_odom", Odometry, queue_size=1)
30+
self._odom_publisher = rospy.Publisher("/scan_odom_node/scan_odom/odometry", Odometry, queue_size=1)
3131

3232
self._transform_broadcaster = tf2_ros.TransformBroadcaster()
3333

0 commit comments

Comments
 (0)