bugfix:TSG-13654:修复因maat-redis写rdb超时导致certstore启动失败的问题

This commit is contained in:
fumingwei
2023-02-14 11:32:53 +08:00
parent 162ddc1bf2
commit 425c8952c5

View File

@@ -369,7 +369,7 @@ proc-title-template "{title} {listen-addr} {server-mode}"
# Snapshotting can be completely disabled with a single empty string argument
# as in following example:
#
# save ""
save ""
#
# Unless specified otherwise, by default Redis will save the DB:
# * After 3600 seconds (an hour) if at least 1 key changed
@@ -378,9 +378,9 @@ proc-title-template "{title} {listen-addr} {server-mode}"
#
# You can set these explicitly by uncommenting the three following lines.
#
save 900 1
save 300 10
save 60 10000
# save 900 1
# save 300 10
# save 60 10000
# By default Redis will stop accepting writes if RDB snapshots are enabled
# (at least one save point) and the latest background save failed.