Skip to content

Commit 0874e19

Browse files
authored
Fix two nodes launched with same name of /rviz2 (#1030))
1 parent 36b87c2 commit 0874e19

File tree

18 files changed

+0
-19
lines changed

18 files changed

+0
-19
lines changed

doc/examples/jupyter_notebook_prototyping/jupyter_notebook_prototyping_tutorial.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ Once our MoveIt configuration is defined we start the following set of nodes:
107107
rviz_node = Node(
108108
package="rviz2",
109109
executable="rviz2",
110-
name="rviz2",
111110
output="log",
112111
arguments=["-d", rviz_config_file],
113112
parameters=[

doc/examples/jupyter_notebook_prototyping/launch/jupyter_notebook_prototyping.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ def generate_launch_description():
5757
rviz_node = Node(
5858
package="rviz2",
5959
executable="rviz2",
60-
name="rviz2",
6160
output="log",
6261
arguments=["-d", rviz_config_file],
6362
parameters=[

doc/examples/motion_planning_python_api/launch/motion_planning_python_api_tutorial.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def generate_launch_description():
4848
rviz_node = Node(
4949
package="rviz2",
5050
executable="rviz2",
51-
name="rviz2",
5251
output="log",
5352
arguments=["-d", rviz_config_file],
5453
parameters=[

doc/examples/move_group_interface/launch/move_group.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def generate_launch_description():
2828
rviz_node = Node(
2929
package="rviz2",
3030
executable="rviz2",
31-
name="rviz2",
3231
output="log",
3332
arguments=["-d", rviz_config_file],
3433
parameters=[

doc/examples/moveit_cpp/launch/moveit_cpp_tutorial.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def generate_launch_description():
4040
rviz_node = Node(
4141
package="rviz2",
4242
executable="rviz2",
43-
name="rviz2",
4443
output="log",
4544
arguments=["-d", rviz_config_file],
4645
parameters=[

doc/examples/perception_pipeline/launch/perception_pipeline_demo.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ def generate_launch_description():
7070
rviz_node = Node(
7171
package="rviz2",
7272
executable="rviz2",
73-
name="rviz2",
7473
output="log",
7574
arguments=["-d", rviz_config],
7675
parameters=[

doc/examples/realtime_servo/launch/pose_tracking_tutorial.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def generate_launch_description():
4141
rviz_node = launch_ros.actions.Node(
4242
package="rviz2",
4343
executable="rviz2",
44-
name="rviz2",
4544
output="log",
4645
arguments=["-d", rviz_config_file],
4746
parameters=[

doc/how_to_guides/chomp_planner/launch/chomp_demo.launch.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def generate_launch_description():
4747
rviz_node_tutorial = Node(
4848
package="rviz2",
4949
executable="rviz2",
50-
name="rviz2",
5150
output="log",
5251
arguments=["-d", rviz_empty_config],
5352
parameters=[
@@ -61,7 +60,6 @@ def generate_launch_description():
6160
rviz_node = Node(
6261
package="rviz2",
6362
executable="rviz2",
64-
name="rviz2",
6563
output="log",
6664
arguments=["-d", rviz_full_config],
6765
parameters=[

doc/how_to_guides/isaac_panda/launch/isaac_demo.launch.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def generate_launch_description():
5353
rviz_node = Node(
5454
package="rviz2",
5555
executable="rviz2",
56-
name="rviz2",
5756
output="log",
5857
arguments=["-d", rviz_config_file],
5958
parameters=[

doc/how_to_guides/moveit_launch_files/moveit_launch_files_tutorial.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ The following code uses a launch argument to receive an RViz configuration file
8888
rviz_node = Node(
8989
package="rviz2",
9090
executable="rviz2",
91-
name="rviz2",
9291
output="log",
9392
arguments=["-d", rviz_config],
9493
parameters=[

0 commit comments

Comments
 (0)