diff mbox series

[ovs-dev,v3,6/8] python: ovs: flow: Add idle_age to openflow flows.

Message ID 20240105114702.443465-7-amorenoz@redhat.com
State Changes Requested
Delegated to: Simon Horman
Headers show
Series python: Miscelaneous flow parsing fixes. | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

Adrian Moreno Jan. 5, 2024, 11:46 a.m. UTC
Add missing key.

Signed-off-by: Adrian Moreno <amorenoz@redhat.com>
---
 python/ovs/flow/ofp.py       | 1 +
 python/ovs/tests/test_ofp.py | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

Comments

Simon Horman Jan. 5, 2024, 3:22 p.m. UTC | #1
On Fri, Jan 05, 2024 at 12:46:58PM +0100, Adrian Moreno wrote:
> Add missing key.
> 
> Signed-off-by: Adrian Moreno <amorenoz@redhat.com>

Acked-by: Simon Horman <horms@ovn.org>
diff mbox series

Patch

diff --git a/python/ovs/flow/ofp.py b/python/ovs/flow/ofp.py
index f1a720d75..3d3226c91 100644
--- a/python/ovs/flow/ofp.py
+++ b/python/ovs/flow/ofp.py
@@ -176,6 +176,7 @@  class OFPFlow(Flow):
             "idle_timeout": decode_time,
             "hard_timeout": decode_time,
             "hard_age": decode_time,
+            "idle_age": decode_time,
         }
         return KVDecoders(args)
 
diff --git a/python/ovs/tests/test_ofp.py b/python/ovs/tests/test_ofp.py
index 9e2721acf..4bcbf9cdf 100644
--- a/python/ovs/tests/test_ofp.py
+++ b/python/ovs/tests/test_ofp.py
@@ -618,7 +618,7 @@  def test_act(input_string, expected):
     "input_string,expected",
     [
         (
-            "cookie=0x35f946ead8d8f9e4, duration=97746.271s, table=0, n_packets=12, n_bytes=254, priority=4,in_port=1",   # noqa: E501
+            "cookie=0x35f946ead8d8f9e4, duration=97746.271s, table=0, n_packets=12, n_bytes=254, idle_age=117, priority=4,in_port=1",   # noqa: E501
             (
                 [
                     KeyValue("cookie", 0x35f946ead8d8f9e4),
@@ -626,6 +626,7 @@  def test_act(input_string, expected):
                     KeyValue("table", 0),
                     KeyValue("n_packets", 12),
                     KeyValue("n_bytes", 254),
+                    KeyValue("idle_age", 117),
                 ],
                 [
                     KeyValue("priority", 4),