OpenKilda is an open-source OpenFlow controller initially designed for use in a global network with high control-plane latency and a heavy emphasis on latency-centric data path optimisation.
Apache License 2.0
78
stars
53
forks
source link
the validate flow request returns incorrect information for a flow with protected path #2302
the validate flow request returns incorrect information for a flow with protected path
Steps to reproduce:
Create a flow with protected path;
validate the created flow (make sure flow created without discrepancies);
remember created rules for main and protected paths;
for example:
Rule IDs for the main path:
-- 953,
-- 905
Rule ID for the protected path:
-- 954
delete rule of protected path on the source switch;
validate the flow.
Actual result:
"expected_value": "954",
"actual_value": "953"
Expected result:
I don't know what exactly should be in the actual_value field
but I am pretty sure that rule of the main path shouldn't be in this field.
the validate flow request returns incorrect information for a flow with protected path
Steps to reproduce:
Create a flow with protected path;
validate the created flow (make sure flow created without discrepancies);
remember created rules for main and protected paths; for example: Rule IDs for the main path: -- 953, -- 905 Rule ID for the protected path: -- 954
delete rule of protected path on the source switch;
validate the flow.
Actual result:
Expected result:
I don't know what exactly should be in the
actual_value
field but I am pretty sure that rule of the main path shouldn't be in this field.