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 the process of doing a bunch of things during the day I had set use_sim_time:=true and then later on I ran rosbaglive. When doing this it appeared that rosbaglive was not actually playing the data back. After some debugging it turns out that I was stuck at the line where rosbaglive sleeps until it is appropriate to play the next message. It turns out that this will be an extremely long time, since the first call to rospy.Time.now() will be 0 if use_sim_time is true. I think it would be good to check if this parameter is set and then at least log a warning, so that the user know they will likely wait for the rest of their life before the next message is played.
The text was updated successfully, but these errors were encountered:
In the process of doing a bunch of things during the day I had set
use_sim_time:=true
and then later on I ranrosbaglive
. When doing this it appeared thatrosbaglive
was not actually playing the data back. After some debugging it turns out that I was stuck at the line whererosbaglive
sleeps until it is appropriate to play the next message. It turns out that this will be an extremely long time, since the first call torospy.Time.now()
will be0
ifuse_sim_time
istrue
. I think it would be good to check if this parameter is set and then at least log a warning, so that the user know they will likely wait for the rest of their life before the next message is played.The text was updated successfully, but these errors were encountered: