Skip to content

Commit

Permalink
Replace deprecated launch_ros usage (#84)
Browse files Browse the repository at this point in the history
Several Node parameters have been deprecated and replaced with new
parameters with different names.

Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron committed Apr 16, 2020
1 parent c15af1b commit b16e049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turtlesim/launch/multisim.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def generate_launch_description():
return LaunchDescription([
launch_ros.actions.Node(
node_namespace= "turtlesim1", package='turtlesim', node_executable='turtlesim_node', output='screen'),
namespace= "turtlesim1", package='turtlesim', executable='turtlesim_node', output='screen'),
launch_ros.actions.Node(
node_namespace= "turtlesim2", package='turtlesim', node_executable='turtlesim_node', output='screen'),
namespace= "turtlesim2", package='turtlesim', executable='turtlesim_node', output='screen'),
])

0 comments on commit b16e049

Please sign in to comment.