Skip to content

Commit

Permalink
Use global namespace for parameter events topic
Browse files Browse the repository at this point in the history
Similar to ros2/rclcpp#929.

Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron committed Aug 3, 2020
1 parent 75c51c9 commit 777f8af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclpy/rclpy/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def __init__(
self.__executor_weakref = None

self._parameter_event_publisher = self.create_publisher(
ParameterEvent, 'parameter_events', qos_profile_parameter_events)
ParameterEvent, '/parameter_events', qos_profile_parameter_events)

with self.handle as capsule:
self._parameter_overrides = _rclpy.rclpy_get_node_parameters(Parameter, capsule)
Expand Down

0 comments on commit 777f8af

Please sign in to comment.