fleet/server/service/externalsvc/externalsvc.go

12 lines
279 B
Go
Raw Normal View History

2022-04-05 16:58:34 +00:00
// Package externalsvc provides types and functions to communicate with
// external services, typically via REST APIs.
package externalsvc
import "time"
const (
maxRetries = 5
retryBackoff = 300 * time.Millisecond
maxWaitForRetryAfter = 10 * time.Second
)