amitnagraj
amitnagraj
I'm using sysrepo v2.2.12 and corresponding YANG(v2.1.4) version which is mentioned in release (https://github.com/sysrepo/sysrepo/releases/tag/v2.2.12) YANG module: ``` module ibos-ip-route { yang-version "1.1"; // namespace namespace "http://waystream.com/yang/ibos/ip/route"; prefix "ibos-ip-route"; // import...
I'm still seeing the memory leak issue in latest sysrepo version (v2.2.150) Please make sure that you have added `ly_log_options(LY_LOLOG | LY_LOSTORE);` in your `sr_get_item_example.c` file, which i mentioned in...
Thanks for the response. Using above code I'm only getting the initial logs from libyang. I'm trying to reproduce `libyang[1]: String "et1/21/vid15" not freed from the dictionary, refcount 4` by...
Thanks for the quick response. Parsing the data locally will be costly when dealing with the large scale datasets, Is there any other way like `lyd_new_path()` which is able to...
In simple, I want to check the presence of a leaf node regardless of list instances in a specific data tree that is defined by me. Code: ``` void print_info_r(struct...