-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[submodule] Advance sonic-swss pointer (#13953)
Update sonic-swss submodule pointer to include the following: * baa302e Do not allow to add port to .1Q bridge while router port deletion is not completed ([#2669](sonic-net/sonic-swss#2669)) * f66abed Support for tc-dot1p and tc-dscp qosmap ([#2559](sonic-net/sonic-swss#2559)) * 35385ad [RouteOrch] Record ROUTE_TABLE entry programming status to APPL_STATE_DB ([#2512](sonic-net/sonic-swss#2512)) * 0704f78 [Workaround] EvpnRemoteVnip2pOrch warmboot check failure ([#2626](sonic-net/sonic-swss#2626)) * 4df5cab [ResponsePublisher] add pipeline support ([#2511](sonic-net/sonic-swss#2511))
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule sonic-swss
updated
19 files
+1 −0 | .gitignore | |
+5 −0 | orchagent/orch.cpp | |
+5 −0 | orchagent/orch.h | |
+6 −0 | orchagent/orchdaemon.cpp | |
+6 −0 | orchagent/portsorch.cpp | |
+64 −4 | orchagent/qosorch.cpp | |
+10 −0 | orchagent/qosorch.h | |
+22 −15 | orchagent/response_publisher.cpp | |
+18 −6 | orchagent/response_publisher.h | |
+40 −2 | orchagent/routeorch.cpp | |
+10 −2 | orchagent/routeorch.h | |
+10 −9 | orchagent/vxlanorch.cpp | |
+20 −3 | tests/mock_tests/Makefile.am | |
+24 −3 | tests/mock_tests/fake_response_publisher.cpp | |
+34 −0 | tests/mock_tests/mock_sai_bridge.h | |
+60 −0 | tests/mock_tests/portsorch_ut.cpp | |
+37 −0 | tests/mock_tests/response_publisher/response_publisher_ut.cpp | |
+62 −0 | tests/mock_tests/routeorch_ut.cpp | |
+183 −0 | tests/test_qos_map.py |