In general, most actions must be lists since the keys can be repeated.
Signed-off-by: Adrian Moreno <[email protected]>
---
python/ovs/flow/odp.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/python/ovs/flow/odp.py b/python/ovs/flow/odp.py
index 46697a1bc..7d9b165d4 100644
--- a/python/ovs/flow/odp.py
+++ b/python/ovs/flow/odp.py
@@ -375,13 +375,15 @@ class ODPFlow(Flow):
KVDecoders(
decoders=_decoders,
default_free=decode_free_output,
- )
+ ),
+ is_list=True,
),
"le": nested_kv_decoder(
KVDecoders(
decoders=_decoders,
default_free=decode_free_output,
- )
+ ),
+ is_list=True,
),
}
)
--
2.43.0
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev