Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sonic-swss-common
Submodule sonic-swss-common updated 35 files
+1 −1 .azure-pipelines/build-sairedis-template.yml
+1 −1 .azure-pipelines/build-swss-template.yml
+3 −3 .azure-pipelines/build-template.yml
+4 −4 azure-pipelines.yml
+2 −1 common/asyncdbupdater.h
+2 −2 common/c-api/consumerstatetable.cpp
+1 −1 common/c-api/consumerstatetable.h
+2 −2 common/c-api/subscriberstatetable.cpp
+1 −1 common/c-api/subscriberstatetable.h
+2 −2 common/c-api/zmqconsumerstatetable.cpp
+1 −1 common/c-api/zmqconsumerstatetable.h
+20 −0 common/database_config.json
+4 −0 common/schema.h
+18 −1 common/zmqconsumerstatetable.cpp
+4 −1 common/zmqconsumerstatetable.h
+10 −0 crates/swss-common-testing/src/lib.rs
+11 −3 crates/swss-common/src/types/consumerstatetable.rs
+5 −13 crates/swss-common/src/types/dbconnector.rs
+30 −0 crates/swss-common/src/types/exception.rs
+5 −1 crates/swss-common/src/types/producerstatetable.rs
+11 −3 crates/swss-common/src/types/subscriberstatetable.rs
+5 −1 crates/swss-common/src/types/table.rs
+5 −1 crates/swss-common/src/types/zmqclient.rs
+15 −7 crates/swss-common/src/types/zmqconsumerstatetable.rs
+0 −10 sonic-db-cli/main.cpp
+85 −15 sonic-db-cli/sonic-db-cli.cpp
+12 −3 sonic-db-cli/sonic-db-cli.h
+1 −0 tests/Makefile.am
+18 −4 tests/c_api_ut.cpp
+3 −1 tests/cli_test_data/cli_help_output.txt
+62 −19 tests/cli_ut.cpp
+39 −0 tests/config_ut.cpp
+10 −0 tests/profileprovider_ut.cpp
+22 −0 tests/redis_multi_db_ut_config/database_config6.json
+91 −0 tests/zmq_state_ut.cpp
Loading