Skip to content

Commit

Permalink
Don't set call_service timeout by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Jan 21, 2025
1 parent c98657e commit 4166fb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rosbridge_server/launch/rosbridge_websocket_launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<arg name="use_compression" default="false" />
<arg name="call_services_in_new_thread" default="false" />
<arg name="default_call_service_timeout" default="5.0" />
<arg name="default_call_service_timeout" default="0.0" />
<arg name="send_action_goals_in_new_thread" default="false" />

<arg name="topics_glob" default="" />
Expand Down
2 changes: 1 addition & 1 deletion rosbridge_server/scripts/rosbridge_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def protocol_parameter_handling(self):
).value

RosbridgeWebSocket.default_call_service_timeout = self.declare_parameter(
"default_call_service_timeout", 5.0
"default_call_service_timeout", 0.0
).value

RosbridgeWebSocket.send_action_goals_in_new_thread = self.declare_parameter(
Expand Down

0 comments on commit 4166fb1

Please sign in to comment.