TF_OLD_DATA warning message #3520
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Turns out the problem was that there were other ros topics published from other robots or PCs on the same network that the pc was connected to. These topics had a different time than that of the simulator (they were published even when isaacsim wasn't on because they came from those other robots/PCs). So I turned them off with |
Beta Was this translation helpful? Give feedback.
Turns out the problem was that there were other ros topics published from other robots or PCs on the same network that the pc was connected to. These topics had a different time than that of the simulator (they were published even when isaacsim wasn't on because they came from those other robots/PCs). So I turned them off with
pkill -9 -f ros && ros daemon stop && export ROS_LOCALHOST_ONLY=1
. Note thatexport ROS_LOCALHOST_ONLY=1
will probably turn off any ros communication between your PC and others, so turn it back on if you need this communication across devices/robots.