This is an automated email from the ASF dual-hosted git repository.
hanahmily 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 5273e8e67 update wrong default value of property repair cron
expression (#1017)
5273e8e67 is described below
commit 5273e8e67aca6cda6cd84f5e32d102bb3a250901
Author: mrproliu <[email protected]>
AuthorDate: Fri Mar 20 08:40:17 2026 +0800
update wrong default value of property repair cron expression (#1017)
Co-authored-by: 吴晟 Wu Sheng <[email protected]>
---
banyand/property/service.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/banyand/property/service.go b/banyand/property/service.go
index 5309245ec..4b6943ef9 100644
--- a/banyand/property/service.go
+++ b/banyand/property/service.go
@@ -97,7 +97,7 @@ func (s *service) FlagSet() *run.FlagSet {
flagS.StringVar(&s.repairBuildTreeCron,
"property-repair-build-tree-cron", "@every 1h", "the cron expression for
repairing the build tree")
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.StringVar(&s.repairTriggerCron, "property-repair-trigger-cron",
"0 2 * * *", "the cron expression for background repairing the property data")
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)