Skip to content

Commit

Permalink
fix the thread_priority parameter declaration type
Browse files Browse the repository at this point in the history
  • Loading branch information
saikishor committed Sep 26, 2024
1 parent aa9a81e commit 023a204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller_interface/src/controller_interface_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ return_type ControllerInterfaceBase::init(
{
auto_declare<int>("update_rate", cm_update_rate);
auto_declare<bool>("is_async", false);
auto_declare<bool>("thread_priority", 50);
auto_declare<int>("thread_priority", 50);
}
catch (const std::exception & e)
{
Expand Down

0 comments on commit 023a204

Please sign in to comment.