mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
14 lines
371 B
Go
14 lines
371 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
|
|
PluginStartTimeout = 3 * time.Minute
|
|
)
|