Files
steampipe/constants/control_execute.go
kaidaguerre e0ff19a280 Update package naming to be consistent and follow Go standards. Closes #1282
General code spring cleaning:
* move file paths from `consts` package to `filepaths`
* move InitData and ExportData to query and control packages
2022-01-04 12:28:36 +00:00

10 lines
351 B
Go

package constants
const (
// ControlQueryCancellationTimeoutSecs is maximum number of seconds to wait for control queries to finish cancelling
ControlQueryCancellationTimeoutSecs = 30
// MaxControlRunAttempts determines how many time should a cotnrol run should be retried
// in the case of a GRPC connectivity error
MaxControlRunAttempts = 2
)