From 30fefaa1ee9e16730546dfbafa09866c4efb3d64 Mon Sep 17 00:00:00 2001 From: beer-1 <147697694+beer-1@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:54:39 +0900 Subject: [PATCH] fix default finalization period to 7 dyas (#115) --- contrib/launchtools/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/launchtools/config.go b/contrib/launchtools/config.go index 3ccb798..4721dfa 100644 --- a/contrib/launchtools/config.go +++ b/contrib/launchtools/config.go @@ -158,7 +158,7 @@ func (opBridge *OpBridge) Finalize(buf *bufio.Reader) error { } if opBridge.OutputFinalizationPeriod == nil { - period := time.Hour + period := time.Hour * 24 * 7 // 7 days opBridge.OutputFinalizationPeriod = &period }