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

feat(autoware_euclidean_cluster)!: tier4_debug_msgs changed to autoware_internal_debug_msgs in autoware_euclidean_cluster #9873

Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@
std::chrono::duration<double, std::milli>(
std::chrono::nanoseconds((this->get_clock()->now() - output.header.stamp).nanoseconds()))
.count();
debug_publisher_->publish<tier4_debug_msgs::msg::Float64Stamped>(
debug_publisher_->publish<autoware_internal_debug_msgs::msg::Float64Stamped>(

Check warning on line 81 in perception/autoware_euclidean_cluster/src/euclidean_cluster_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/autoware_euclidean_cluster/src/euclidean_cluster_node.cpp#L81

Added line #L81 was not covered by tests
"debug/cyclic_time_ms", cyclic_time_ms);
debug_publisher_->publish<tier4_debug_msgs::msg::Float64Stamped>(
debug_publisher_->publish<autoware_internal_debug_msgs::msg::Float64Stamped>(

Check warning on line 83 in perception/autoware_euclidean_cluster/src/euclidean_cluster_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/autoware_euclidean_cluster/src/euclidean_cluster_node.cpp#L83

Added line #L83 was not covered by tests
"debug/processing_time_ms", processing_time_ms);
debug_publisher_->publish<tier4_debug_msgs::msg::Float64Stamped>(
debug_publisher_->publish<autoware_internal_debug_msgs::msg::Float64Stamped>(

Check warning on line 85 in perception/autoware_euclidean_cluster/src/euclidean_cluster_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/autoware_euclidean_cluster/src/euclidean_cluster_node.cpp#L85

Added line #L85 was not covered by tests
"debug/pipeline_latency_ms", pipeline_latency_ms);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@
std::chrono::duration<double, std::milli>(
std::chrono::nanoseconds((this->get_clock()->now() - output.header.stamp).nanoseconds()))
.count();
debug_publisher_->publish<tier4_debug_msgs::msg::Float64Stamped>(
debug_publisher_->publish<autoware_internal_debug_msgs::msg::Float64Stamped>(

Check warning on line 84 in perception/autoware_euclidean_cluster/src/voxel_grid_based_euclidean_cluster_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/autoware_euclidean_cluster/src/voxel_grid_based_euclidean_cluster_node.cpp#L84

Added line #L84 was not covered by tests
"debug/cyclic_time_ms", cyclic_time_ms);
debug_publisher_->publish<tier4_debug_msgs::msg::Float64Stamped>(
debug_publisher_->publish<autoware_internal_debug_msgs::msg::Float64Stamped>(

Check warning on line 86 in perception/autoware_euclidean_cluster/src/voxel_grid_based_euclidean_cluster_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/autoware_euclidean_cluster/src/voxel_grid_based_euclidean_cluster_node.cpp#L86

Added line #L86 was not covered by tests
"debug/processing_time_ms", processing_time_ms);
debug_publisher_->publish<tier4_debug_msgs::msg::Float64Stamped>(
debug_publisher_->publish<autoware_internal_debug_msgs::msg::Float64Stamped>(

Check warning on line 88 in perception/autoware_euclidean_cluster/src/voxel_grid_based_euclidean_cluster_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/autoware_euclidean_cluster/src/voxel_grid_based_euclidean_cluster_node.cpp#L88

Added line #L88 was not covered by tests
"debug/pipeline_latency_ms", pipeline_latency_ms);
}
}
Expand Down
Loading