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
[BUG] Repeatably attempting to connect to a Rizon 10 by creating a flexivrdk.Robot while the controler is still bootin causes the controller to never boot.
#75
Closed
skyrimax opened this issue
Jul 16, 2024
· 1 comment
· Fixed by #72
Describe the bug
Repeatably attempting to connect to a Rizon 10 by creating a flexivrdk.Robot while the controler is still bootin causes the controller to never boot. We waited well over 10 minutes.
Steps to reproduce
Here is simple python script that should allow you to reproduce the issue
import flexivrdk
robot_ip_addr = 'ENTER YOUR ROBOT IP HERE'
local_ip_addr = 'ENTER YOUR LOCAL IP HERE
while True:
try:
robot = flexivrdk.Robot(robot_ip_addr, local_ip_addr)
logger.info('Connected to Barry robot')
break
except Exception as e:
logger.warning(f'Caught {type(e)} while attempting to connect to Barry robot: {e}, retrying in 5s')
await asyncio.sleep(5)
continue
Unplug/switch off the controller
Start the above pyhton script
Plug/switch on the controller
Wait
The controller never completelly boots and the connection is never established
Expected behavior
We would expect the controller the controller to boot normally and the RDK to connect once the controller is ready
Additional context
We don't think this has an influence, but out script runs in a docker container with the priviledged flag enabled.
The text was updated successfully, but these errors were encountered:
This behavior was later fixed in RDK v1.4. I have just tested it on v1.4 and it was working. Unfortunately, v1.4 is not compatible with the currently released robot firmware v2.11.5. I will keep you updated on future robot firmware releases. Sorry for the inconvenience.
If you would be so kind, can you change the title of the issue to be more descriptive, so other users can also learn from this problem? Thank you so much!
pzhu-flexiv
changed the title
[BUG]
[BUG] Repeatably attempting to connect to a Rizon 10 by creating a flexivrdk.Robot while the controler is still bootin causes the controller to never boot.
Jul 23, 2024
Version information
Describe the bug
Repeatably attempting to connect to a Rizon 10 by creating a flexivrdk.Robot while the controler is still bootin causes the controller to never boot. We waited well over 10 minutes.
Steps to reproduce
Here is simple python script that should allow you to reproduce the issue
Expected behavior
We would expect the controller the controller to boot normally and the RDK to connect once the controller is ready
Additional context
We don't think this has an influence, but out script runs in a docker container with the priviledged flag enabled.
The text was updated successfully, but these errors were encountered: