Skip to content

Commit

Permalink
fix default finalization period to 7 dyas (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 authored Oct 16, 2024
1 parent 041e8d1 commit 30fefaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/launchtools/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 30fefaa

Please sign in to comment.