We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
call_services_in_new_thread
1 parent dfc412c commit c5e238fCopy full SHA for c5e238f
rosbridge_server/scripts/rosbridge_websocket.py
@@ -341,6 +341,14 @@ def check_deprecated_parameters(self):
341
"will be updated to 5.0 seconds."
342
)
343
344
+ if RosbridgeWebSocket.call_services_in_new_thread == False:
345
+ self.get_logger().warn(
346
+ "The 'call_services_in_new_thread' parameter is currently set to False, "
347
+ "which means service calls will block the main thread. "
348
+ "Please note that in the Jazzy and later releases, the default value for this parameter "
349
+ "will be updated to True."
350
+ )
351
+
352
353
def main(args=None):
354
if args is None:
0 commit comments