Skip to content

Commit 8c49903

Browse files
mergify[bot]ottojo
andauthored
doc: readme: fix example conversion configs: all -> all_topics (#1661) (#1668)
* fix example conversion configs: all -> all_topics Signed-off-by: Jonas Otto <[email protected]> * update topic and service selection arguments in conversion config in readme Signed-off-by: Jonas Otto <[email protected]> * add all_services: true to first example Co-authored-by: Michael Orlov <[email protected]> Signed-off-by: Jonas Otto <[email protected]> * add all_services: true to second example Co-authored-by: Michael Orlov <[email protected]> Signed-off-by: Jonas Otto <[email protected]> --------- Signed-off-by: Jonas Otto <[email protected]> Co-authored-by: Michael Orlov <[email protected]> (cherry picked from commit 938fafa) Co-authored-by: Jonas Otto <[email protected]>
1 parent 576c1b5 commit 8c49903

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,17 @@ output_bags:
226226
max_bagfile_duration: 0
227227
storage_preset_profile: ""
228228
storage_config_uri: ""
229-
all: false
229+
all_topics: false
230230
topics: []
231+
topic_types: []
232+
all_services: false
233+
services: []
231234
rmw_serialization_format: "" # defaults to using the format of the input topic
232235
regex: ""
233-
exclude: ""
236+
exclude_regex: ""
237+
exclude_topics: []
238+
exclude_topic_types: []
239+
exclude_services: []
234240
compression_mode: ""
235241
compression_format: ""
236242
compression_queue_size: 1
@@ -247,7 +253,8 @@ $ ros2 bag convert -i bag1 -i bag2 -o out.yaml
247253
# out.yaml
248254
output_bags:
249255
- uri: merged_bag
250-
all: true
256+
all_topics: true
257+
all_services: true
251258
```
252259

253260
Example split:
@@ -271,7 +278,8 @@ $ ros2 bag convert -i bag1 -o out.yaml
271278
# out.yaml
272279
output_bags:
273280
- uri: compressed
274-
all: true
281+
all_topics: true
282+
all_services: true
275283
compression_mode: file
276284
compression_format: zstd
277285
```

0 commit comments

Comments
 (0)