You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In rocon_interactions/src/rocon_interactions/loader.py, Line 65 there's a hard coded timeout of 15seconds. On slow systems this timeout does not allow the node to start.
Simple solution:
raise timeout
Better solution:
catch exception
log a warning
start over (wait again)
BTW: This is a common problem, which occurs not only here, but also in other rocon packages.
The text was updated successfully, but these errors were encountered:
In rocon_interactions/src/rocon_interactions/loader.py, Line 65 there's a hard coded timeout of 15seconds. On slow systems this timeout does not allow the node to start.
Simple solution:
Better solution:
BTW: This is a common problem, which occurs not only here, but also in other rocon packages.
The text was updated successfully, but these errors were encountered: