Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions release/models/qos/openconfig-qos-elements.yang
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,15 @@ submodule openconfig-qos-elements {
description
"Identifier for the match term";
}
leaf sequence-id {
type uint32;
description
"The sequence id determines the order in which terms
are matched. The sequence id must be unique for each entry
in terms. Target devices should apply the terms
in ascending order determined by sequence id (low to
high), rather than the relying only on order in the list.";
}
Comment on lines +193 to +201

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There is a grammatical typo in the description of the sequence-id leaf: "rather than the relying only on order in the list." should be "rather than relying only on the order in the list."

Suggested change
leaf sequence-id {
type uint32;
description
"The sequence id determines the order in which terms
are matched. The sequence id must be unique for each entry
in terms. Target devices should apply the terms
in ascending order determined by sequence id (low to
high), rather than the relying only on order in the list.";
}
leaf sequence-id {
type uint32;
description
"The sequence id determines the order in which terms
are matched. The sequence id must be unique for each entry
in terms. Target devices should apply the terms
in ascending order determined by sequence id (low to
high), rather than relying only on the order in the list.";
}

}

grouping qos-classifier-term-state {
Expand Down