[Bug] value interpolation does not work in list
See original GitHub issueValue interpolation does not seem to work in list e.g.:
chckpnt_dirnames:
- ${base_dir}/${model.name}/
- .
Doesn’t replace model.name
and base_dir
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Groovy Gotcha: String interpolation does not always execute ...
This indicates that: In case 1 , the placeholder string is checked for in the list, and fails, as it hasn't been interpolated....
Read more >Interpolation not working - Mathematica Stack Exchange
I get the following errro message: InterpolatingFunction::dmval: Input value {0.00245143} lies outside the range of data in the interpolating ...
Read more >Docker Compose release notes
For a list of PRs and issues fixed in this release, see Compose 1.28.3. ... Values interpolated from the environment will now be...
Read more >Interpolations - Apache FreeMarker Manual
The interpolation is used to insert the value of the expression converted to text (to string). Interpolations can be used only on two...
Read more >Frequently Asked Questions — Ansible Documentation
Although most core modules will work with Python 3, there may be some special purpose ones which do not or you may encounter...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Because I’m logging it and wanted to see the interpolated strings (which didn’t work when just logging the OmegaConf object)
If you are converting to a list this is no longer an OmegaConf object.
The proper way to convert to a primitive list is to use: resolved_list = args.tests.to_container(resolve=True)