Skip to content

Commit

Permalink
gnsi/certz: fix error in yang description (#159)
Browse files Browse the repository at this point in the history
connection-rejects should increment for failed
connection attempts
  • Loading branch information
brianneville authored Feb 14, 2024
1 parent b89a6a9 commit ad0c687
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion certz/gnsi-certz.html
Original file line number Diff line number Diff line change
Expand Up @@ -8496,7 +8496,7 @@ <h1> Module: <font color=blue>gnsi-certz</font>, Namespace:
<td nowrap>
<div id=9999 class=tier7>
<a class="leaf">&nbsp;</a>
<attr title="The total number of times that gRPC clients have succeeded
<attr title="The total number of times that gRPC clients have failed
in establishing a connection to the server."> <em> gnsi-certz:connection-rejects </em></abbr>

</div>
Expand Down
6 changes: 3 additions & 3 deletions certz/gnsi-certz.yang
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@ module gnsi-certz {
leaf connection-rejects {
type oc-yang:counter64;
description
"The total number of times that gRPC clients have succeeded
"The total number of times that gRPC clients have failed
in establishing a connection to the server.";
}
leaf last-connection-reject {
type oc-types:timeticks64;
description
"A timestamp of the last time a gRPC client failed
in establishing a connection to the server."
in establishing a connection to the server.";
}
leaf connection-accepts {
type oc-yang:counter64;
Expand All @@ -106,7 +106,7 @@ module gnsi-certz {
type oc-types:timeticks64;
description
"A timestamp of the last time a gRPC client succeeded
in establishing a connection to the server."
in establishing a connection to the server.";
}
}
}
Expand Down

0 comments on commit ad0c687

Please sign in to comment.