-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[submodule] Update submodule sonic-utilities to the latest HEAD autom…
…atically (#20326) #### Why I did it src/sonic-utilities ``` * 1d727674 - (HEAD -> 202405, origin/202405) [chassis] Modify the show ip route to hide the Ethernet-IB port in the output (#3537) (63 minutes ago) [Arvindsrinivasan Lakshmi Narasimhan] * 2b1177b2 - [VoQ chassis] : Script to debug packet drops (#3536) (4 hours ago) [Vineet Mittal] * cda43d63 - Fix multi-asic support to PFC config/show (#3521) (4 hours ago) [HP] * d3e99689 - [show][interface][counters] Add proposal and changes for fec-histogram for interface counters fec-histogram subcommand (#3519) (4 hours ago) [vdahiya12] * be6d6202 - [sfputil] Configure the debug loopback mode only on the relevant lanes of the logical port (#3485) (4 hours ago) [Xinyu Lin] ``` #### How I did it #### How to verify it #### Description for the changelog
- Loading branch information
1 parent
8e5ebaa
commit 7f6a246
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule sonic-utilities
updated
25 files
+14 −4 | config/main.py | |
+38 −4 | doc/Command-Reference.md | |
+78 −54 | pfc/main.py | |
+371 −0 | scripts/debug_voq_chassis_packet_drops.sh | |
+1 −0 | setup.py | |
+74 −8 | sfputil/main.py | |
+18 −7 | show/bgp_common.py | |
+70 −0 | show/interfaces/__init__.py | |
+8 −2 | show/main.py | |
+13 −2 | tests/conftest.py | |
+2 −1 | tests/ip_show_routes_multi_asic_test.py | |
+112 −0 | tests/ip_show_routes_voq_chassis_test.py | |
+66 −0 | tests/mock_tables/asic0/ip_route_lc.json | |
+56 −0 | tests/mock_tables/asic0/ip_route_lc_2.json | |
+106 −0 | tests/mock_tables/asic0/ip_route_remote_lc.json | |
+106 −0 | tests/mock_tables/asic1/ip_route_lc.json | |
+56 −0 | tests/mock_tables/asic1/ip_route_lc_2.json | |
+106 −0 | tests/mock_tables/asic1/ip_route_remote_lc.json | |
+17 −1 | tests/mock_tables/counters_db.json | |
+133 −0 | tests/multi_asic_pfc_test.py | |
+286 −0 | tests/pfc_input/pfc_test_vectors.py | |
+35 −13 | tests/pfc_test.py | |
+30 −0 | tests/portstat_test.py | |
+57 −8 | tests/sfputil_test.py | |
+57 −0 | tests/show_ip_route_common.py |