This is an automated email from the ASF dual-hosted git repository.

liuhan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git


The following commit(s) were added to refs/heads/main by this push:
     new 5a5cf566 Activate the property repair mechanism by default (#940)
5a5cf566 is described below

commit 5a5cf5665435c7d38ee59188968e79a660a60e87
Author: mrproliu <[email protected]>
AuthorDate: Thu Jan 15 09:53:38 2026 +0800

    Activate the property repair mechanism by default (#940)
---
 CHANGES.md                  | 1 +
 banyand/property/service.go | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CHANGES.md b/CHANGES.md
index 26ba7a16..bb50c9eb 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -16,6 +16,7 @@ Release Notes.
 - Support writing data with specifications.
 - Persist series metadata in liaison queue for measure, stream and trace 
models.
 - Update the dump tool to support analyzing the parts with smeta files.
+- Activate the property repair mechanism by default.
 
 ### Bug Fixes
 
diff --git a/banyand/property/service.go b/banyand/property/service.go
index 275053e6..b3be9b1d 100644
--- a/banyand/property/service.go
+++ b/banyand/property/service.go
@@ -91,7 +91,7 @@ func (s *service) FlagSet() *run.FlagSet {
        flagS.DurationVar(&s.repairQuickBuildTreeTime, 
"property-repair-quick-build-tree-time", time.Minute*10,
                "the duration of the quick build tree after operate the 
property")
        flagS.StringVar(&s.repairTriggerCron, "property-repair-trigger-cron", 
"* 2 * * *", "the cron expression for background repairing the property data")
-       flagS.BoolVar(&s.repairEnabled, "property-repair-enabled", false, 
"whether to enable the background property repair")
+       flagS.BoolVar(&s.repairEnabled, "property-repair-enabled", true, 
"whether to enable the background property repair")
        s.gossipMessenger.FlagSet().VisitAll(func(f *pflag.Flag) {
                flagS.AddFlag(f)
        })

Reply via email to