We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0b796d commit 7c63978Copy full SHA for 7c63978
1 file changed
tests/qos/tunnel_qos_remap_base.py
@@ -335,9 +335,11 @@ def disable_packet_aging(duthosts):
335
for duthost in duthosts:
336
asic = duthost.get_asic_name()
337
if 'spc' in asic:
338
+ # Ignore errors if the script is not found in syncd container as it may be removed
339
+ # by swap_syncd
340
logger.info("Enable Mellanox packet aging")
- duthost.command("docker exec syncd python /packets_aging.py enable")
- duthost.command("docker exec syncd rm -rf /packets_aging.py")
341
+ duthost.command("docker exec syncd python /packets_aging.py enable", module_ignore_errors=True)
342
+ duthost.command("docker exec syncd rm -rf /packets_aging.py", module_ignore_errors=True)
343
344
345
def _create_ssh_tunnel_to_syncd_rpc(duthost):
0 commit comments