Skip to content

Commit

Permalink
try fixing gitmodule errro
Browse files Browse the repository at this point in the history
  • Loading branch information
MishkaMN committed Apr 9, 2024
1 parent 07e0577 commit 962b1fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core_planning/twist_filter/src/twist_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ carma_ros2_utils::CallbackReturn TwistFilter::handle_on_configure(const rclcpp_l
if (use_sim_time)
{
hardcoded_acceleration_limit = MAX_SIMULATION_LONGITUDINAL_ACCEL_HARDCODED_LIMIT_M_S_2;
RCLCPP_INFO_STREAM(get_logger(), "Simulation mode detected. Accounting for hardcoded limit, longitudinal acceleration limit used: " << hardcoded_acceleration_limit);
RCLCPP_ERROR_STREAM(get_logger(), "Simulation mode detected. Accounting for hardcoded limit, longitudinal acceleration limit used: " << hardcoded_acceleration_limit);
}
else
{
RCLCPP_INFO_STREAM(get_logger(), "Accounting for hardcoded limit, longitudinal acceleration limit used: " << hardcoded_acceleration_limit);
RCLCPP_ERROR_STREAM(get_logger(), "Accounting for hardcoded limit, longitudinal acceleration limit used: " << hardcoded_acceleration_limit);
}

_lon_accel_limiter = LongitudinalAccelLimiter{
Expand Down
2 changes: 1 addition & 1 deletion jsk_common_msgs/.gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule ".travis"]
path = .travis
url = git://github.com/jsk-ros-pkg/jsk_travis
url = git@//github.com/jsk-ros-pkg/jsk_travis

0 comments on commit 962b1fb

Please sign in to comment.