Skip to content

Commit

Permalink
Fixup for backporting commit
Browse files Browse the repository at this point in the history
- On Jazzy parameters in the "format_bag_meta_data(..)" has a different
order. The "sizes" at the end. Changed calling function accordingly.

Signed-off-by: Michael Orlov <[email protected]>
  • Loading branch information
MichaelOrlov committed Dec 2, 2024
1 parent 266aee6 commit 57a7ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rosbag2_py/src/rosbag2_py/_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Info
{
InfoSortingMethod sort_method = info_sorting_method_from_string(sorting_method);
// Output formatted metadata
std::cout << format_bag_meta_data(metadata_info, {}, false, false, sort_method) << std::endl;
std::cout << format_bag_meta_data(metadata_info, false, false, {}, sort_method) << std::endl;
}

void print_output_topic_name_only(
Expand Down

0 comments on commit 57a7ae8

Please sign in to comment.