Skip to content

Commit

Permalink
Merge pull request #10 from norlab-ulaval/offline_fix
Browse files Browse the repository at this point in the history
Fixed offline mode.
  • Loading branch information
boxanm authored Sep 18, 2023
2 parents 1902091 + 79460d9 commit 610756b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapper_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class MapperNode : public rclcpp::Node
else
{
mapperShutdownThread = std::thread(&MapperNode::mapperShutdownLoop, this);
tfBuffer = std::unique_ptr<tf2_ros::Buffer>(new tf2_ros::Buffer(this->get_clock(), tf2::Duration::max()));
tfBuffer = std::unique_ptr<tf2_ros::Buffer>(new tf2_ros::Buffer(this->get_clock(), std::chrono::seconds(1000000)));
messageQueueSize = 0;
}

Expand Down

0 comments on commit 610756b

Please sign in to comment.