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.
[submodule] Advance sonic-swss pointer
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 ([sonic-net#2669](sonic-net/sonic-swss#2669)) * f66abed Support for tc-dot1p and tc-dscp qosmap ([sonic-net#2559](sonic-net/sonic-swss#2559)) * 35385ad [RouteOrch] Record ROUTE_TABLE entry programming status to APPL_STATE_DB ([sonic-net#2512](sonic-net/sonic-swss#2512)) * 0704f78 [Workaround] EvpnRemoteVnip2pOrch warmboot check failure ([sonic-net#2626](sonic-net/sonic-swss#2626)) * 4df5cab [ResponsePublisher] add pipeline support ([sonic-net#2511](sonic-net/sonic-swss#2511)) 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-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 |