mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-14 07:00:08 -04:00
13 lines
351 B
Go
13 lines
351 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
var (
|
|
DashboardServiceStartTimeout = 30 * time.Second
|
|
DBStartTimeout = 30 * time.Second
|
|
DBConnectionRetryBackoff = 200 * time.Millisecond
|
|
DBRecoveryTimeout = 24 * time.Hour
|
|
DBRecoveryRetryBackoff = 200 * time.Millisecond
|
|
ServicePingInterval = 50 * time.Millisecond
|
|
)
|