Skip to content

Commit

Permalink
Fix flaky parameter test (noetic)
Browse files Browse the repository at this point in the history
  • Loading branch information
achim-k committed Jan 25, 2023
1 parent 70708f4 commit df69cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros1_foxglove_bridge/src/ros1_foxglove_bridge_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ class FoxgloveBridge : public nodelet::Nodelet {

try {
XmlRpc::XmlRpcValue value;
getMTNodeHandle().getParamCached(paramName, value);
getMTNodeHandle().getParam(paramName, value);
params.push_back(fromRosParam(paramName, value));
} catch (const std::exception& ex) {
ROS_ERROR("Invalid parameter: %s", ex.what());
Expand Down

0 comments on commit df69cc7

Please sign in to comment.