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-common pointer
Update sonic-swss-common submodule pointer to include the following: * 565ad4b Fix common path issue ([sonic-net#751](sonic-net/sonic-swss-common#751)) * 3352881 Prevent sonic-db-cli generate core dump ([sonic-net#749](sonic-net/sonic-swss-common#749)) * 43cadec Add ProfileProvider class to support read profile config from PROFILE_DB. ([sonic-net#683](sonic-net/sonic-swss-common#683)) * 8b09f90 Update path to sairedis tests ([sonic-net#747](sonic-net/sonic-swss-common#747)) * 85f3776 Non recursive automake and Debian packaging changes ([sonic-net#700](sonic-net/sonic-swss-common#700)) This is a reland of sonic-net#13950, with the debug image build fix. Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
- Loading branch information
1 parent
2ba2ff1
commit 75eee5f
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sonic-swss-common
updated
25 files
+1 −1 | .azure-pipelines/build-sairedis-template.yml | |
+22 −1 | Makefile.am | |
+70 −79 | common/Makefile.am | |
+214 −0 | common/profileprovider.cpp | |
+61 −0 | common/profileprovider.h | |
+4 −0 | common/schema.h | |
+1 −7 | configure.ac | |
+1 −1 | debian/compat | |
+2 −8 | debian/control | |
+5 −12 | debian/rules | |
+2 −4 | pyext/Makefile.am | |
+9 −16 | pyext/py2/Makefile.am | |
+9 −16 | pyext/py3/Makefile.am | |
+2 −0 | pyext/swsscommon.i | |
+10 −18 | sonic-db-cli/Makefile.am | |
+2 −1 | sonic-db-cli/main.cpp | |
+32 −0 | sonic-db-cli/sonic-db-cli.cpp | |
+6 −0 | sonic-db-cli/sonic-db-cli.h | |
+41 −48 | tests/Makefile.am | |
+32 −0 | tests/cli_ut.cpp | |
+2 −2 | tests/defaultvalueprovider_ut.cpp | |
+103 −0 | tests/profileprovider_ut.cpp | |
+5 −0 | tests/redis_multi_db_ut_config/database_config.json | |
+5 −0 | tests/redis_multi_db_ut_config/database_config0.json | |
+5 −0 | tests/redis_multi_db_ut_config/database_config1.json |