File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed
src/rviz_default_plugins/displays/image Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -20,5 +20,6 @@ RUN apt update && apt install -y \
20
20
python3-pytest-timeout \
21
21
ros-dev-tools
22
22
WORKDIR /ros2_rolling
23
+ ENV ROS_DISTRO="rolling"
23
24
RUN mkdir src && vcs import --input https://raw.githubusercontent.com/ros2/ros2/rolling/ros2.repos src
24
25
RUN apt upgrade -y && rosdep init && rosdep update && rosdep install --from-paths src --ignore-src -y --skip-keys "fastcdr rti-connext-dds-6.0.1 urdfdom_headers"
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ find_package(gz_math_vendor REQUIRED)
65
65
find_package (gz-math REQUIRED)
66
66
67
67
find_package (image_transport REQUIRED)
68
- find_package (image_transport_plugins REQUIRED)
69
68
find_package (interactive_markers REQUIRED)
70
69
find_package (laser_geometry REQUIRED)
71
70
find_package (map_msgs REQUIRED)
@@ -247,7 +246,6 @@ target_include_directories(rviz_default_plugins PUBLIC
247
246
target_link_libraries (rviz_default_plugins PUBLIC
248
247
${geometry_msgs_TARGETS}
249
248
image_transport::image_transport
250
- ${image_transport_plugins_TARGETS}
251
249
interactive_markers::interactive_markers
252
250
laser_geometry::laser_geometry
253
251
${map_msgs_TARGETS}
@@ -286,7 +284,6 @@ ament_export_targets(rviz_default_plugins HAS_LIBRARY_TARGET)
286
284
ament_export_dependencies(
287
285
geometry_msgs
288
286
image_transport
289
- image_transport_plugins
290
287
interactive_markers
291
288
laser_geometry
292
289
map_msgs
Original file line number Diff line number Diff line change 40
40
<depend >geometry_msgs</depend >
41
41
<depend >gz_math_vendor</depend >
42
42
<depend >image_transport</depend >
43
- <depend >image_transport_plugins</depend >
44
43
<depend >interactive_markers</depend >
45
44
<depend >laser_geometry</depend >
46
45
<depend >nav_msgs</depend >
Original file line number Diff line number Diff line change 69
69
70
70
#include < rviz_common/logging.hpp> // TODO remove when done
71
71
72
+ // TODO This may have introduced a segfault upon closing the program, but it is infrequent.
73
+ // It's possible this existed before my changes.
74
+
72
75
namespace rviz_default_plugins
73
76
{
74
77
namespace displays
@@ -198,7 +201,6 @@ void ImageDisplay::subscribe(){
198
201
// Update the message types to allow in the topic_property_
199
202
((rviz_common::properties::RosTopicMultiProperty*)topic_property_)->setMessageTypes (message_types);
200
203
201
- RVIZ_COMMON_LOG_INFO (" subscribe" );
202
204
if (topic_property_->isEmpty ()) {
203
205
setStatus (
204
206
rviz_common::properties::StatusProperty::Error, " Topic" ,
You can’t perform that action at this time.
0 commit comments