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: * abda263 Make the loglevel persistent by moving the LOGGER table from the LOGLEVEL DB to the CONFIG DB ([sonic-net#687](sonic-net/sonic-swss-common#687)) * d0fdf62 Check whether a pointer created by dynamic_cast is null before using it. ([sonic-net#689](sonic-net/sonic-swss-common#689)) * 2cae742 [Fast/Warm restart] Implement helper class for waiting restart done ([sonic-net#691](sonic-net/sonic-swss-common#691)) 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-common
updated
19 files
+1 −1 | BUILD | |
+6 −2 | common/Makefile.am | |
+21 −35 | common/logger.cpp | |
+4 −0 | common/logger.h | |
+52 −40 | common/loglevel.cpp | |
+9 −0 | common/loglevel.h | |
+6 −0 | common/loglevel_util.cpp | |
+145 −0 | common/redis_table_waiter.cpp | |
+43 −0 | common/redis_table_waiter.h | |
+92 −0 | common/restart_waiter.cpp | |
+33 −0 | common/restart_waiter.h | |
+1 −5 | common/schema.h | |
+4 −0 | pyext/swsscommon.i | |
+4 −0 | tests/Makefile.am | |
+9 −6 | tests/logger_ut.cpp | |
+13 −0 | tests/logger_ut.h | |
+40 −0 | tests/loglevel_ut.cpp | |
+105 −0 | tests/redis_table_waiter_ut.cpp | |
+113 −0 | tests/restart_waiter_ut.cpp |