forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[202211][submodule] Advance sonic-utilities pointer
Update sonic-utilities submodule pointer to include the following: * 600377f7 [DPB]Fixing typo in config breakout output ([sonic-net#2802](sonic-net/sonic-utilities#2802)) * 8ae2424a [config]Support multi-asic Golden Config override ([sonic-net#2738](sonic-net/sonic-utilities#2738)) * 79003ab2 [chassis]: remote cli commands infra for sonic chassis ([sonic-net#2701](sonic-net/sonic-utilities#2701)) * cbc55eeb [voq][chassis][generate_dump] [BCM] Dump only the relevant BCM commands for fabric cards ([sonic-net#2606](sonic-net/sonic-utilities#2606)) * 39c94b7e [GCU] Prohibit removal of PFC_WD POLL_INTERVAL field ([sonic-net#2545](sonic-net/sonic-utilities#2545)) Signed-off-by: dprital <drorp@nvidia.com>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule sonic-utilities
updated
24 files
+10 −5 | config/config_mgmt.py | |
+32 −27 | config/main.py | |
+4 −0 | generic_config_updater/generic_updater.py | |
+19 −0 | generic_config_updater/gu_common.py | |
+0 −0 | rcli/__init__.py | |
+151 −0 | rcli/linecard.py | |
+44 −0 | rcli/rexec.py | |
+38 −0 | rcli/rshell.py | |
+149 −0 | rcli/utils.py | |
+37 −29 | scripts/generate_dump | |
+4 −0 | setup.py | |
+21 −0 | sonic-utilities-data/bash_completion.d/rexec | |
+21 −0 | sonic-utilities-data/bash_completion.d/rshell | |
+6 −6 | tests/chassis_modules_test.py | |
+3 −3 | tests/config_dpb_test.py | |
+11 −0 | tests/config_override_input/multi_asic_dm_rm.json | |
+23 −0 | tests/config_override_input/multi_asic_macsec_ov.json | |
+75 −2 | tests/config_override_test.py | |
+12 −0 | tests/generic_config_updater/gu_common_test.py | |
+12 −0 | tests/mock_tables/asic0/state_db.json | |
+9 −0 | tests/mock_tables/chassis_state_db.json | |
+5 −0 | tests/mock_tables/database_config.json | |
+2 −2 | tests/mock_tables/state_db.json | |
+260 −0 | tests/remote_cli_test.py |