Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba57c9d commit 474ad94Copy full SHA for 474ad94
codersdk/deployment.go
@@ -808,7 +808,10 @@ type PrebuildsConfig struct {
808
// the number of failed prebuilds, which influences the backoff strategy.
809
ReconciliationBackoffLookback serpent.Duration `json:"reconciliation_backoff_lookback" typescript:",notnull"`
810
811
- FailureHardLimit int64 `json:"failure_hard_limit" typescript:",notnull"`
+ // FailureHardLimit defines the maximum number of consecutive failed prebuild attempts allowed
812
+ // before a preset is considered to be in a hard limit state. When a preset hits this limit,
813
+ // no new prebuilds will be created until the limit is reset.
814
+ FailureHardLimit int64 `json:"failure_hard_limit" typescript:"failure_hard_limit"`
815
}
816
817
const (
0 commit comments