Merge pull request #112353 from dgrisonnet/update-max-sync-backoff

Update endpointslice controller maximum sync backoff delay to match expected sequence of delays
This commit is contained in:
Kubernetes Prow Robot 2022-09-14 08:55:00 -07:00 committed by GitHub
commit c7d47e4c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,7 +69,7 @@ const (
// defaultSyncBackOff is the default backoff period for syncService calls. // defaultSyncBackOff is the default backoff period for syncService calls.
defaultSyncBackOff = 1 * time.Second defaultSyncBackOff = 1 * time.Second
// maxSyncBackOff is the max backoff period for syncService calls. // maxSyncBackOff is the max backoff period for syncService calls.
maxSyncBackOff = 100 * time.Second maxSyncBackOff = 1000 * time.Second
// controllerName is a unique value used with LabelManagedBy to indicated // controllerName is a unique value used with LabelManagedBy to indicated
// the component managing an EndpointSlice. // the component managing an EndpointSlice.