clicon / clixon

YANG-based toolchain including NETCONF and RESTCONF interfaces and an interactive CLI
http://www.clicon.org/
Other
215 stars 72 forks source link

JSON leaf-list output single element leaf-list does not use array #289

Closed swh1991 closed 2 years ago

swh1991 commented 2 years ago

Be similar Bug 261, use release version 5.3 , issue persist , different use and result is different.

Example YANG, result is ok.

container test { leaf-list number{ type int32; } } Expected output: {"test": {"number": [1]} Actual output: {"test": {"number": [1]} Example YANG, result is error.

leaf-list number{ type int32; } Expected output: {"number": [1]} Actual output: {"number": 1}​

olofhagsand commented 2 years ago

Please verify