From 25458831bd3ade97b2bb290934d777d655ee627e Mon Sep 17 00:00:00 2001 From: Srinivas Rachakonda Date: Sun, 29 Jul 2018 12:57:22 +0530 Subject: [PATCH] Fix for 74477 Change-Id: I6cc81ee8b42d3e40c12c89b2c315d631ac115ee1 Signed-off-by: Srinivas Rachakonda --- csit/libraries/OVSDB.robot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/libraries/OVSDB.robot b/csit/libraries/OVSDB.robot index 9e475e608b..055de65200 100644 --- a/csit/libraries/OVSDB.robot +++ b/csit/libraries/OVSDB.robot @@ -422,7 +422,7 @@ Get Tunnel Id And Packet Count [Arguments] ${conn_id} ${table_id} ${direction} ${tun_id} ${dst_mac}="" [Documentation] Get tunnel id and packet count from specified table id and destination port mac address ${tun_id} = BuiltIn.Convert To Hex ${tun_id} prefix=0x lowercase=yes - ${base_cmd} = BuiltIn.Set Variable sudo ovs-ofctl dump-flows br-int -OOpenFlow13 | grep table=${table_id} | grep ${tun_id} + ${base_cmd} = BuiltIn.Set Variable sudo ovs-ofctl dump-flows br-int -OOpenFlow13 | grep table=${table_id} | grep tun_id=${tun_id} ${full_cmd} = BuiltIn.Run Keyword If "${direction}" == "Egress" BuiltIn.Catenate ${base_cmd} | grep ${dst_mac} | awk '{split($7,a,"[:-]"); print a[2]}' ... ELSE BuiltIn.Catenate ${base_cmd} | awk '{split($6,a,"[,=]"); {print a[4]}}' SSHLibrary.Switch Connection ${conn_id} -- 2.36.6