Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deprecation warning in paramater declaration #1280

Merged
merged 3 commits into from
Sep 11, 2024

Commits on Sep 1, 2024

  1. Fix deprecation warning in paramater declaration

    Updated the paramater declaration in `publisher_forward_position_controller` to resolve a deprecation warning.
    
    Changes Made:
    - Replaced `self.declare_parameter(name)` with `self.declare_parameter(name, descriptor=ParameterDescriptor(dynamic_typing=True))`
    
    Fixes: ros-controls#1239
    Sanjeev Kumar committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    85c7baa View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Configuration menu
    Copy the full SHA
    59e6da6 View commit details
    Browse the repository at this point in the history
  2. Fix deprecation warning in paramater declaration - implicitly

    Updated the paramater declaration to include type in `publisher_forward_position_controller` and `publisher_joint_trajectory_controller`
    
    Changes Made:
    - Replaced `self.declare_parameter(name)` with `self.declare_parameter(name, rclpy.Parameter.Type.DOUBLE_ARRAY)`
    Sanjeev Kumar committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    cc4694a View commit details
    Browse the repository at this point in the history