Skip to content

Commit

Permalink
Resolved issue CiscoDevNet#943
Browse files Browse the repository at this point in the history
  • Loading branch information
ygorelik committed Jul 29, 2019
1 parent 977967a commit b4d7955
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
* Added utility function to compare two entities and build diff ([#925](https://github.com/CiscoDevNet/ydk-gen/issues/925))

#### Resolved GitHub issues
* Incorrect subtree filter using NETCONF service ([#441](https://github.com/CiscoDevNet/ydk-gen/issues/441))
* NETCONF provider should raise more appropriate exceptions ([#774](https://github.com/CiscoDevNet/ydk-gen/issues/774))
* YList test fails when list entity added before keys are initialized ([#800](https://github.com/CiscoDevNet/ydk-gen/issues/800))
* Go: When entity having children is built from model API the child entities parent is nil ([#938](https://github.com/CiscoDevNet/ydk-gen/issues/938))
* gNMISession fails to decode GetRequest response when returned values is empty string ([#943](https://github.com/CiscoDevNet/ydk-gen/issues/943))

### 2019-05-15 version 0.8.3

Expand Down
2 changes: 2 additions & 0 deletions sdk/cpp/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
* Added utility function to compare two entities and build diff ([#925](https://github.com/CiscoDevNet/ydk-gen/issues/925))

#### Resolved GitHub issues
* Incorrect subtree filter using NETCONF service ([#441](https://github.com/CiscoDevNet/ydk-gen/issues/441))
* NETCONF provider should raise more appropriate exceptions ([#774](https://github.com/CiscoDevNet/ydk-gen/issues/774))
* YList test fails when list entity added before keys are initialized ([#800](https://github.com/CiscoDevNet/ydk-gen/issues/800))
* gNMISession fails to decode GetRequest response when returned values is empty string ([#943](https://github.com/CiscoDevNet/ydk-gen/issues/943))


### 2019-05-15 version 0.8.3
Expand Down
2 changes: 1 addition & 1 deletion sdk/cpp/gnmi/src/gnmi_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ static string format_notification_response(pair<string,string> prefix_suffix, co
// else if ((flag.prefix_has_value) && (flag.path_has_value))
// reply_to_parse.append("\"data\":{" + prefix_to_prepend + ":[" + path_to_prepend + "[" + value + "]]" + "}}");
// else {
string val = (value == "{\"value\":\"null\"}") ? "{}" : value;
string val = (value.empty() || value == "{\"value\":\"null\"}") ? "{}" : value;
if (path_to_prepend.length()==0 && val.find("{")==0)
reply_val = val;
else
Expand Down
1 change: 1 addition & 0 deletions sdk/python/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Added utility function to compare two entities and build diff ([#925](https://github.com/CiscoDevNet/ydk-gen/issues/925))

#### Resolved GitHub issues
* Incorrect subtree filter using NETCONF service ([#441](https://github.com/CiscoDevNet/ydk-gen/issues/441))
* NETCONF provider should raise more appropriate exceptions ([#774](https://github.com/CiscoDevNet/ydk-gen/issues/774))


Expand Down

0 comments on commit b4d7955

Please sign in to comment.