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
The issue is that SpotRobotSubscriberMixin which is absolute base class is the one that initializes ros node.
SpotBaseEnv, SpotNavEnv, SpotGazeEnv, SpotPlaceEnv keep modifying the ros node name which finally get's initialized in SpotRobotSubscriberMixin. This system is prone to bug because SpotSkillManager which does not inherit from any of these above mentioned classes will not be able to alter the node name and the file that utilizes SpotSkillManager cannot have a separate ros node init as that raises runtime error.
The text was updated successfully, but these errors were encountered:
The issue is that
SpotRobotSubscriberMixin
which is absolute base class is the one that initializes ros node.SpotBaseEnv
,SpotNavEnv
,SpotGazeEnv
,SpotPlaceEnv
keep modifying the ros node name which finally get's initialized inSpotRobotSubscriberMixin
. This system is prone to bug becauseSpotSkillManager
which does not inherit from any of these above mentioned classes will not be able to alter the node name and the file that utilizes SpotSkillManager cannot have a separate ros node init as that raises runtime error.The text was updated successfully, but these errors were encountered: