cic-custodial/pkg/util/sla.go

9 lines
160 B
Go
Raw Normal View History

package util
import "time"
const (
// SLATimeout is the max duration after which any network call/context should be aborted.
SLATimeout = 5 * time.Second
)