File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ ros2 run aic_engine aic_engine --ros-args \
5959 -p ground_truth:=false \
6060 -p endpoint_ready_timeout_seconds:=10 \
6161 -p model_discovery_timeout_seconds:=30 \
62- -p model_configuration_timeout_seconds:=60
62+ -p model_configure_timeout_seconds:=90
6363 -p use_sim_time:=true
6464```
6565
@@ -76,7 +76,7 @@ ros2 run aic_engine aic_engine --ros-args \
7676| ` skip_ready_simulator ` | bool | false | Skip simulator readiness and entity spawning/deletion (for testing only) |
7777| ` endpoint_ready_timeout_seconds ` | int | 10 | Timeout for waiting for required endpoints |
7878| ` model_discovery_timeout_seconds ` | int | 30 | Timeout for discovering the participant model |
79- | ` model_configure_timeout_seconds ` | int | 60 | Timeout for model configuration checks |
79+ | ` model_configure_timeout_seconds ` | int | 90 | Timeout for model configuration checks |
8080| ` model_activate_timeout_seconds ` | int | 60 | Timeout for model activation |
8181| ` model_deactivate_timeout_seconds ` | int | 60 | Timeout for model deactivation |
8282| ` model_cleanup_timeout_seconds ` | int | 60 | Timeout for model cleanup |
Original file line number Diff line number Diff line change @@ -312,7 +312,7 @@ Engine::Engine(const rclcpp::NodeOptions& options)
312312 skip_ready_simulator_ =
313313 node_->declare_parameter (" skip_ready_simulator" , false );
314314 node_->declare_parameter (" model_discovery_timeout_seconds" , 30 );
315- node_->declare_parameter (" model_configure_timeout_seconds" , 60 );
315+ node_->declare_parameter (" model_configure_timeout_seconds" , 90 );
316316 node_->declare_parameter (" model_activate_timeout_seconds" , 60 );
317317 node_->declare_parameter (" model_deactivate_timeout_seconds" , 60 );
318318 node_->declare_parameter (" model_cleanup_timeout_seconds" , 60 );
You can’t perform that action at this time.
0 commit comments