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: Simon Horman <[email protected]>
  • Loading branch information
amorenoz authored and Simon Horman committed Jan 18, 2024
1 parent 7ab4ba7 commit a282a4e
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 @@ -173,7 +173,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 a282a4e

Please sign in to comment.