Documentation ¶
Index ¶
- type ApplicationInstanceCrashedError
- type ApplicationInstanceFlappingError
- type ApplicationNotFoundError
- type HTTPHealthCheckInvalidError
- type InvalidHTTPRouteSettings
- type NoMatchingDomainError
- type StagingFailedError
- type StagingFailedNoAppDetectedError
- type StagingTimeoutError
- type StartupTimeoutError
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApplicationInstanceCrashedError ¶
type ApplicationInstanceCrashedError struct {
Name string
}
ApplicationInstanceCrashedError is returned when an instance crashes.
func (ApplicationInstanceCrashedError) Error ¶
func (e ApplicationInstanceCrashedError) Error() string
type ApplicationInstanceFlappingError ¶
type ApplicationInstanceFlappingError struct {
Name string
}
ApplicationInstanceFlappingError is returned when an instance crashes.
func (ApplicationInstanceFlappingError) Error ¶
func (e ApplicationInstanceFlappingError) Error() string
type ApplicationNotFoundError ¶
ApplicationNotFoundError is returned when a requested application is not found.
func (ApplicationNotFoundError) Error ¶
func (e ApplicationNotFoundError) Error() string
type HTTPHealthCheckInvalidError ¶
type HTTPHealthCheckInvalidError struct { }
HTTPHealthCheckInvalidError is returned when an HTTP endpoint is used with a health check type that is not HTTP.
func (HTTPHealthCheckInvalidError) Error ¶
func (e HTTPHealthCheckInvalidError) Error() string
type InvalidHTTPRouteSettings ¶
type InvalidHTTPRouteSettings struct {
Domain string
}
func (InvalidHTTPRouteSettings) Error ¶
func (e InvalidHTTPRouteSettings) Error() string
type NoMatchingDomainError ¶
type NoMatchingDomainError struct {
Route string
}
func (NoMatchingDomainError) Error ¶
func (e NoMatchingDomainError) Error() string
type StagingFailedError ¶
type StagingFailedError struct {
Reason string
}
StagingFailedError is returned when staging an application fails.
func (StagingFailedError) Error ¶
func (e StagingFailedError) Error() string
type StagingFailedNoAppDetectedError ¶
type StagingFailedNoAppDetectedError struct {
Reason string
}
StagingFailedNoAppDetectedError is returned when staging an application fails.
func (StagingFailedNoAppDetectedError) Error ¶
func (e StagingFailedNoAppDetectedError) Error() string
type StagingTimeoutError ¶
StagingTimeoutError is returned when staging timeout is reached waiting for an application to stage.
func (StagingTimeoutError) Error ¶
func (e StagingTimeoutError) Error() string
type StartupTimeoutError ¶
type StartupTimeoutError struct {
Name string
}
StartupTimeoutError is returned when startup timeout is reached waiting for an application to start.
func (StartupTimeoutError) Error ¶
func (e StartupTimeoutError) Error() string
Source Files ¶
- application_instance_crashed_error.go
- application_instance_flapping_error.go
- application_not_found_error.go
- http_health_check_invalid_error.go
- invalid_http_route_settings.go
- no_matching_domain_error.go
- staging_failed_error.go
- staging_failed_no_app_detected_error.go
- staging_timeout_error.go
- startup_timeout_error.go