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
voq_lag.verify_lag_in_remote_asic_db(remote_duthosts, tmp_lag_id)
verify_lag_in_asic_db(dut.asics, lag_id, deleted)
pytest.fail('LAG id {} for LAG {} does not exist in ASIC DB'.format(lag_id, TMP_PC))
The test seems to verify that the LAG id is the same in ASIC_DB on all LCs.
But it seems like it's not found on the remote LC.
Either PortChannel999 doesn't exist on the remote LCs or it's given a different LagId.
for asic in asics:
asicdb = AsicDbCli(asic)
asic_db_lag_list = asicdb.get_asic_db_lag_list()
if deleted:
...
else:
for lag in asic_db_lag_list:
if asicdb.hget_key_value(lag, "SAI_LAG_ATTR_SYSTEM_PORT_AGGREGATE_ID") == lag_id:
logging.info('LAG id {} for LAG {} exist in ASIC DB'.format(lag_id, TMP_PC))
return
pytest.fail('LAG id {} for LAG {} does not exist in ASIC DB'.format(lag_id, TMP_PC))
Results you see
LAG_ID is different between LCs for a given portchannel
Results you expected to see
LAG_IDs should be the same on all LCs for a given portchannel
Is it platform specific
generic
Relevant log output
No response
Output of show version
No response
Attach files (if any)
No response
The text was updated successfully, but these errors were encountered:
Issue Description
The test seems to verify that the LAG id is the same in ASIC_DB on all LCs.
But it seems like it's not found on the remote LC.
Either PortChannel999 doesn't exist on the remote LCs or it's given a different LagId.
Results you see
LAG_ID is different between LCs for a given portchannel
Results you expected to see
LAG_IDs should be the same on all LCs for a given portchannel
Is it platform specific
generic
Relevant log output
No response
Output of
show version
No response
Attach files (if any)
No response
The text was updated successfully, but these errors were encountered: