ros / dynamic_reconfigure

BSD 3-Clause "New" or "Revised" License
48 stars 111 forks source link

Fail in yaml.load_all() #183

Closed albertgassol1 closed 2 years ago

albertgassol1 commented 2 years ago

When running the dynamic_reconfigure the process dies with the following error: yaml.load_all() without loader=... is deprecated

I had to change line 162 from for doc in yaml.load_all(f.read()): to for doc in yaml.load_all(f.read(), Loader=yaml.Loader): With this change everything works properly.

janbernloehr commented 2 years ago

Should be fixed by #178