mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-29 16:00:09 -04:00
11 lines
249 B
Go
11 lines
249 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
var (
|
|
DashboardServiceStartTimeout = 30 * time.Second
|
|
DBConnectionTimeout = 30 * time.Second
|
|
DBConnectionRetryBackoff = 200 * time.Millisecond
|
|
ServicePingInterval = 50 * time.Millisecond
|
|
)
|