Skip to content

Commit

Permalink
increase timeout for customer ak (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik authored Feb 8, 2024
1 parent 06aac5a commit d00ac4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flow/peerdbenv/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ func PeerDBCDCIdleTimeoutSeconds(providedValue int) time.Duration {
if providedValue > 0 {
x = providedValue
} else {
x = getEnvInt("PEERDB_CDC_IDLE_TIMEOUT_SECONDS", 60)
// for customer we need 900 seconds.
x = getEnvInt("PEERDB_CDC_IDLE_TIMEOUT_SECONDS", 60*15)
}
return time.Duration(x) * time.Second
}
Expand Down

0 comments on commit d00ac4f

Please sign in to comment.