diff mbox series

[ovs-dev] tests: fix flaky Multiple OVS interfaces bound to same logical porta

Message ID 20230530092621.3689063-1-xsimonar@redhat.com
State Accepted
Headers show
Series [ovs-dev] tests: fix flaky Multiple OVS interfaces bound to same logical porta | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/github-robot-_ovn-kubernetes fail github build: failed

Commit Message

Xavier Simonart May 30, 2023, 9:26 a.m. UTC
Fixes: 52cb9c3b41c2 ("ovn-controller: Fixed missing flows after interface deletion")
Signed-off-by: Xavier Simonart <xsimonar@redhat.com>
---
 tests/ovn.at | 1 +
 1 file changed, 1 insertion(+)

Comments

Dumitru Ceara June 8, 2023, 1:31 p.m. UTC | #1
On 5/30/23 11:26, Xavier Simonart wrote:
> Fixes: 52cb9c3b41c2 ("ovn-controller: Fixed missing flows after interface deletion")
> Signed-off-by: Xavier Simonart <xsimonar@redhat.com>
> ---
>  tests/ovn.at | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tests/ovn.at b/tests/ovn.at
> index 6f9fbbfd2..b2ac2e068 100644
> --- a/tests/ovn.at
> +++ b/tests/ovn.at
> @@ -34402,6 +34402,7 @@ m4_define([MULTIPLE_OVS_INT],
>         ovs-ofctl dump-flows br-int | grep $cookie |
>             sed -e 's/duration=[[0-9.]]*s, //g' |
>             sed -e 's/idle_age=[[0-9]]*, //g' |
> +           sed -e 's/hard_age=[[0-9]]*, //g' |
>             sed -e 's/n_packets=[[0-9]]*, //g' |
>             sed -e 's/n_bytes=[[0-9]]*, //g'
>     }

Thanks, Xavier!  I applied this to main and backported it to all stable
branches down to 22.03.
diff mbox series

Patch

diff --git a/tests/ovn.at b/tests/ovn.at
index 6f9fbbfd2..b2ac2e068 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -34402,6 +34402,7 @@  m4_define([MULTIPLE_OVS_INT],
        ovs-ofctl dump-flows br-int | grep $cookie |
            sed -e 's/duration=[[0-9.]]*s, //g' |
            sed -e 's/idle_age=[[0-9]]*, //g' |
+           sed -e 's/hard_age=[[0-9]]*, //g' |
            sed -e 's/n_packets=[[0-9]]*, //g' |
            sed -e 's/n_bytes=[[0-9]]*, //g'
    }