Sanitize node memory consumption with a smaller TF buffer size. (#879)

Fixes an (almost) unbounded growth of the TF buffer.

See the heap profile logs in the PR for more information.
master
Michael Grupp 2018-05-29 11:04:29 +02:00 committed by Wally B. Feed
parent 4ecf04b49f
commit d53d339562
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ namespace cartographer_ros {
namespace {
void Run() {
constexpr double kTfBufferCacheTimeInSeconds = 1e6;
constexpr double kTfBufferCacheTimeInSeconds = 10.;
tf2_ros::Buffer tf_buffer{::ros::Duration(kTfBufferCacheTimeInSeconds)};
tf2_ros::TransformListener tf(tf_buffer);
NodeOptions node_options;

View File

@ -44,7 +44,7 @@ namespace cartographer_ros {
namespace {
void Run() {
constexpr double kTfBufferCacheTimeInSeconds = 1e6;
constexpr double kTfBufferCacheTimeInSeconds = 10.;
tf2_ros::Buffer tf_buffer{::ros::Duration(kTfBufferCacheTimeInSeconds)};
tf2_ros::TransformListener tf(tf_buffer);
NodeOptions node_options;