Analog-Devices-MSDK / btm-ci-scripts

0 stars 1 forks source link

Resource manager cannot handle keys with "." in the name #29

Closed EricB-ADI closed 4 months ago

EricB-ADI commented 4 months ago

If you have a config like

{
   "foo.bar" : "hello world"
}

The resource manager will fail to parse the get of "foo.bar" Since it will interpret it as

{
  "foo" :{
     "bar" : "hello world 
  }
}

There is not really a way around this with rework of the get syntax. Optionally can add delimiter flag.

EricB-ADI commented 4 months ago

fixed in #30