From: Lucas Alvares Gomes <[email protected]> This patch is fixing a left-over from commit 74d90c2223d0a8c123823fb849b4c2de58c296e4, we need to add the new "other_config" column from the Chassis table to the rbac_chassis_update list for northd.
Co-Authored-by: Numan Siddique <[email protected]> Signed-off-by: Numan Siddique <[email protected]> Signed-off-by: Lucas Alvares Gomes <[email protected]> --- northd/ovn-northd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/northd/ovn-northd.c b/northd/ovn-northd.c index 8e58e5ba2..f445ab869 100644 --- a/northd/ovn-northd.c +++ b/northd/ovn-northd.c @@ -11405,7 +11405,8 @@ check_and_add_supported_dhcpv6_opts_to_sb_db(struct northd_context *ctx) static const char *rbac_chassis_auth[] = {"name"}; static const char *rbac_chassis_update[] = - {"nb_cfg", "external_ids", "encaps", "vtep_logical_switches"}; + {"nb_cfg", "external_ids", "encaps", "vtep_logical_switches", + "other_config"}; static const char *rbac_encap_auth[] = {"chassis_name"}; -- 2.26.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
