Skip to content

Commit

Permalink
node/proc: increase retryLimitOurs to 30h
Browse files Browse the repository at this point in the history
  • Loading branch information
tbjump authored and tbjump committed Aug 21, 2023
1 parent 4e1cb5d commit 795ea8a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions node/pkg/processor/cleanup.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ var (
)

const (
settlementTime = time.Second * 30
retryLimitOurs = time.Hour * 24
settlementTime = time.Second * 30
// retryLimitOurs defines how long this Guardian will keep an observation in the local state before discarding it.
// Oservations from other Guardians can take up to 24h to arrive if they are held in their Governor. Therefore, this value should be greater than 24h.
retryLimitOurs = time.Hour * 30
retryLimitNotOurs = time.Hour
)

Expand Down

0 comments on commit 795ea8a

Please sign in to comment.