From b9aaa6d2e982fbf8758215309dcefb81197d7756 Mon Sep 17 00:00:00 2001 From: sangheee Date: Mon, 3 Jul 2023 15:33:40 +0900 Subject: [PATCH] the default snapCount configuration doesn't mismatch the comment. The default value of snapCount that the comment says is 100,000. But the actual value is set 10,000. I corrected this mismatch between them. --- api/v1beta1/zookeepercluster_types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v1beta1/zookeepercluster_types.go b/api/v1beta1/zookeepercluster_types.go index f64474b4..ddf498ff 100644 --- a/api/v1beta1/zookeepercluster_types.go +++ b/api/v1beta1/zookeepercluster_types.go @@ -697,7 +697,7 @@ func (c *ZookeeperConfig) withDefaults() (changed bool) { } if c.SnapCount == 0 { changed = true - c.SnapCount = 10000 + c.SnapCount = 100000 } if c.CommitLogCount == 0 { changed = true