Switch config files from YAML to TOML and fix script paths - #27
Merged
Conversation
The script previously referenced .yaml configs, which mismatched octomap’s TOML parser (toml++), causing a runtime parse error (expected '=', saw ':'). Align with octomap upstream using TOML as the official config format.
Member
|
Aha great! Thanks for the pull request, I will merge it once I back to my
offices
…On Mon, Sep 22, 2025 at 09:13 WonJune Kim ***@***.***> wrote:
The scripts were pointing to YAML configs, but octomap actually expects
TOML. That mismatch caused parse errors (like expected '=' but saw ':').
This update switches the config references to TOML and brings things in
line with octomap upstream, which uses TOML as the official format.
------------------------------
You can view, comment on, or merge this pull request online at:
#27
Commit Summary
- 1c9ba08
<1c9ba08>
octomap: switch config format from YAML to TOML and update script paths
File Changes
(1 file <https://github.com/KTH-RPL/DynamicMap_Benchmark/pull/27/files>)
- *M* scripts/sh/0_run_methods_all.sh
<https://github.com/KTH-RPL/DynamicMap_Benchmark/pull/27/files#diff-8903346bde64fdbc9b44683c389e8da392ca29fd488217ad32983fb7e5a29a4b>
(8)
Patch Links:
- https://github.com/KTH-RPL/DynamicMap_Benchmark/pull/27.patch
- https://github.com/KTH-RPL/DynamicMap_Benchmark/pull/27.diff
—
Reply to this email directly, view it on GitHub
<#27>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AIN2HBE3S2KAJHE3B56DMM33T6VUBAVCNFSM6AAAAACHENCSNGVHI2DSMVQWIX3LMV43ASLTON2WKOZTGQZTSNRZHAZTSNA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The scripts were pointing to YAML configs, but octomap actually expects TOML. That mismatch caused parse errors (like expected '=' but saw ':').
This update switches the config references to TOML and brings things in line with octomap upstream, which uses TOML as the official format.