-
Notifications
You must be signed in to change notification settings - Fork 914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ros_comm: python "message_filters.Cache.getLastestTime" should probably be "message_filters.Cache.getLatestTime" #1449
Comments
A PR against the latest development branch (currently |
madebyollin
added a commit
to madebyollin/ros_comm
that referenced
this issue
Jul 6, 2018
Per directions [here](ros#1449 (comment)).
madebyollin
added a commit
to madebyollin/ros_comm
that referenced
this issue
Jul 6, 2018
Added a PR here, although it ran into the |
dirk-thomas
pushed a commit
that referenced
this issue
Aug 3, 2018
…1450) * Rename getLastestTime to getLatestTime Per directions [here](#1449 (comment)). * Test getLatestTime instead of getLastestTime per #1449 (comment)
dirk-thomas
pushed a commit
that referenced
this issue
Aug 9, 2018
…1450) * Rename getLastestTime to getLatestTime Per directions [here](#1449 (comment)). * Test getLatestTime instead of getLastestTime per #1449 (comment)
dirk-thomas
pushed a commit
that referenced
this issue
Aug 20, 2018
…1450) * Rename getLastestTime to getLatestTime Per directions [here](#1449 (comment)). * Test getLatestTime instead of getLastestTime per #1449 (comment)
This has been fixed in #1450, so this issue can be closed, right? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the C++
message_filters.Cache
API there is a method calledgetLatestTime()
. (source code)But the python equivalent of this method is called
getLastestTime()
. (source code)This seems like a typo and is potentially confusing to people moving between the two APIs. Assuming the only things that need to be changed are the function definition and the associated unit test, I can try making a PR, but it's quite a minor change so I'm not sure if that's warranted.
The text was updated successfully, but these errors were encountered: