You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sai.py not support fdb info (key) get , there obj_id is 'SAI_OBJECT_TYPE_FDB_ENTRY:{"bv_id": "oid:0x260000000009b5", "mac_address": "00:11:11:11:11:11", "switch_id": "oid:0x21000000000000"} '
elif operation == "get":
obj_type = self.sai.vid_to_type(obj_id)
results = []
for attr in attrs:
attr_type = self.sai.get_obj_attr_type(obj_type, attr)
status, data = self.sai.get_by_type(obj_id, attr, attr_type)
assert status == "SAI_STATUS_SUCCESS", f"Failed to retrieve {attr}: {status}"
results.append(data)
return results
The text was updated successfully, but these errors were encountered:
my simple code :
error:
sai.py not support fdb info (key) get , there obj_id is 'SAI_OBJECT_TYPE_FDB_ENTRY:{"bv_id": "oid:0x260000000009b5", "mac_address": "00:11:11:11:11:11", "switch_id": "oid:0x21000000000000"} '
The text was updated successfully, but these errors were encountered: