Files
teleport/lib/utils/retry.go
T
Hugo Shaka 6f9c638364 Send goodbye even when doing soft-reload (#54176)
* Send goodbye even when doing soft-reload

* Save and replay Goodbye on connect

* Add SoftReload flag to Goodbye

* SendGoodbye -> SetAndSendGoodbye
2025-05-05 18:35:28 +00:00

57 lines
1.9 KiB
Go

/*
* Teleport
* Copyright (C) 2023 Gravitational, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package utils
import (
"time"
"github.com/jonboulle/clockwork"
"github.com/gravitational/teleport/api/utils/retryutils"
)
// HalfJitter is [retryutils.HalfJitter].
//
// Deprecated: use retryutils.HalfJitter.
func HalfJitter(d time.Duration) time.Duration { return retryutils.HalfJitter(d) }
// FullJitter is [retryutils.FullJitter].
//
// Deprecated: use retryutils.FullJitter.
func FullJitter(d time.Duration) time.Duration { return retryutils.FullJitter(d) }
// NewDefaultLinear creates a linear retry with reasonable default parameters for
// attempting to restart "critical but potentially load-inducing" operations, such
// as watcher or control stream resume. Exact parameters are subject to change,
// but this retry will always be configured for automatic reset.
func NewDefaultLinear(clock clockwork.Clock) *retryutils.Linear {
retry, err := retryutils.NewLinear(retryutils.LinearConfig{
First: retryutils.FullJitter(time.Second * 10),
Step: time.Second * 15,
Max: time.Second * 90,
Jitter: retryutils.HalfJitter,
AutoReset: 5,
Clock: clock,
})
if err != nil {
panic("default linear retry misconfigured (this is a bug)")
}
return retry
}