diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-02-05 11:17:44 -0500 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-02-05 11:17:44 -0500 |
commit | 484f1b32f1ef9cfcf74189b701ebb9078ddb0ab8 (patch) | |
tree | 64cedb05c5754e4330b928d308d68765c364a037 /sliapi | |
parent | 66879d0c4c73b9cd371cdffec3a56f25c340a100 (diff) |
Add dummy input
Fluorine version of restconf does not handle RPCs with no input
correctly. So, need to work around that by defining dummy input
for SLI-API vlbcheck and healthcheck APIs
Change-Id: I6a78a899937e1bb9bd7674530166a493875ca3bf
Issue-ID: CCSDK-1035
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'sliapi')
-rwxr-xr-x | sliapi/model/src/main/yang/sliapi.yang | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sliapi/model/src/main/yang/sliapi.yang b/sliapi/model/src/main/yang/sliapi.yang index 98cbb2aa..b3272be8 100755 --- a/sliapi/model/src/main/yang/sliapi.yang +++ b/sliapi/model/src/main/yang/sliapi.yang @@ -103,12 +103,25 @@ module SLI-API { } rpc healthcheck { + // OpenDaylight Fluorine version of restconf cannot handle RPCs with no input + input { + leaf dummy { + type string; + } + } output { uses response-fields; } } rpc vlbcheck { + // OpenDaylight Fluorine version of restconf cannot handle RPCs with no input + input { + leaf dummy + { + type string; + } + } output { uses response-fields; } |