Skip to content

Commit

Permalink
python: ovs: flow: Fix typo in n_packets.
Browse files Browse the repository at this point in the history
They key used in flows is "n_packets".

Signed-off-by: Adrian Moreno <[email protected]>
Signed-off-by: 0-day Robot <[email protected]>
  • Loading branch information
amorenoz authored and ovsrobot committed Dec 20, 2023
1 parent de4cccf commit 21f85ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ovs/flow/ofp.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def _gen_info_decoders():
args = {
"table": decode_int,
"duration": decode_time,
"n_packet": decode_int,
"n_packets": decode_int,
"n_bytes": decode_int,
"cookie": decode_int,
"idle_timeout": decode_time,
Expand Down

0 comments on commit 21f85ec

Please sign in to comment.