Files
steampipe/pkg/constants/duration.go
2023-08-12 17:42:54 +01:00

13 lines
327 B
Go

package constants
import "time"
var (
DashboardStartTimeout = 30 * time.Second
DBStartTimeout = 30 * time.Second
DBConnectionRetryBackoff = 200 * time.Millisecond
DBRecoveryTimeout = 24 * time.Hour
DBRecoveryRetryBackoff = 200 * time.Millisecond
ServicePingInterval = 50 * time.Millisecond
)