Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test_rclcpp/test/test_multithreaded.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,10 @@ static inline void multi_access_publisher(bool intra_process)
}

const std::vector<std::string> arguments = {};
const std::vector<rclcpp::Parameter> initial_values = {};
const bool use_global_arguments = true;
auto node = rclcpp::Node::make_shared(
node_topic_name, "", context, arguments, use_global_arguments, intra_process);
node_topic_name, "", context, arguments, initial_values, use_global_arguments, intra_process);
auto timer_callback_group = node->create_callback_group(
rclcpp::callback_group::CallbackGroupType::Reentrant);
auto sub_callback_group = node->create_callback_group(
Expand Down