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
timeWarning: coroutine 'TestAsync.async_callback' was never awaited
cb(*(msg + args))
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
and the callback does not seem to be called correctly (I see no logs).
This is a toy example for demonstration but in my use case I am trying to use message_filters.TimeSynchronizer to synchronize messages from callbacks for multiple topics. Is there something I am doing wrong or is this a bug?
The text was updated successfully, but these errors were encountered:
So I have a callback that I need to await a transform from tf2 in. Here is a MWE using a regular ros2 subscription that works
When I switch this MWE to using message_filters like this
instead of
I get the error
and the callback does not seem to be called correctly (I see no logs).
This is a toy example for demonstration but in my use case I am trying to use
message_filters.TimeSynchronizer
to synchronize messages from callbacks for multiple topics. Is there something I am doing wrong or is this a bug?The text was updated successfully, but these errors were encountered: