You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by ro...@apache.org on 2022/01/26 04:14:47 UTC

[servicecomb-service-center] branch master updated: [feat] fix delete tombstone data bug

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

robotljw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
     new 9270bd7  [feat] fix delete tombstone data bug
     new 8eaab7b  Merge pull request #1248 from xiaoluoluo/fix
9270bd7 is described below

commit 9270bd731d2aca1c89cc723986758a7a40e5ed47
Author: 1162641716@qq.com <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>
AuthorDate: Wed Jan 26 11:50:05 2022 +0800

    [feat] fix delete tombstone data bug
---
 syncer/job/tombstone/tombstone.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/syncer/job/tombstone/tombstone.go b/syncer/job/tombstone/tombstone.go
index ec36073..d1023a9 100644
--- a/syncer/job/tombstone/tombstone.go
+++ b/syncer/job/tombstone/tombstone.go
@@ -34,7 +34,7 @@ const (
 )
 
 func init() {
-	cronStr := config.GetString("sync.tombstone.retire,cron", "")
+	cronStr := config.GetString("sync.tombstone.retire.cron", "")
 	if len(cronStr) <= 0 {
 		cronStr = defaultDeleteExpireTombstoneCron
 	}