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
If the Scenario is in a state where a Robot is moving around (a movement thread is open and running), and the user does a KeyboardInterrupt, the main thread will shut down, but the Terminal will be stuck with the movement threads.
A solution would be to add daemon=True to any created threads, but a more long-term solution is to improve the current parallel movement implementation.
The text was updated successfully, but these errors were encountered:
If the Scenario is in a state where a Robot is moving around (a movement thread is open and running), and the user does a KeyboardInterrupt, the main thread will shut down, but the Terminal will be stuck with the movement threads.
A solution would be to add
daemon=True
to any created threads, but a more long-term solution is to improve the current parallel movement implementation.The text was updated successfully, but these errors were encountered: