From 56f1d4e50a175ae53e44e81d38880538be78f857 Mon Sep 17 00:00:00 2001 From: kotaro-hihara Date: Thu, 29 Aug 2024 20:23:36 +0900 Subject: [PATCH] concat warn needs 3 frames NG --- .../src/concatenate_data/concatenate_and_time_sync_nodelet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sensing/pointcloud_preprocessor/src/concatenate_data/concatenate_and_time_sync_nodelet.cpp b/sensing/pointcloud_preprocessor/src/concatenate_data/concatenate_and_time_sync_nodelet.cpp index 38d4c701b6a02..95abe59d6b872 100644 --- a/sensing/pointcloud_preprocessor/src/concatenate_data/concatenate_and_time_sync_nodelet.cpp +++ b/sensing/pointcloud_preprocessor/src/concatenate_data/concatenate_and_time_sync_nodelet.cpp @@ -701,7 +701,7 @@ void PointCloudConcatenateDataSynchronizerComponent::checkConcatStatus() diag_status_msg.values.push_back(key_value_msg); } - if (consecutive_concatenate_failures > 1) { + if (consecutive_concatenate_failures > 2) { diag_status_msg.level = diagnostic_msgs::msg::DiagnosticStatus::WARN; diag_status_msg.message = "Some topics are not concatenated"; } else {