Class FailureKinds
java.lang.Object
com.bluebell.greenhouse.platform.constants.job.FailureKinds
The classification axis for a failed job attempt. The kind answers "what sort of thing went
wrong", which is what decides whether an automatic retry can help; the accompanying failure code
stays free to describe the specific event.
- Version:
- 3.0.6
- Author:
- Stephen Prizio
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringAn external provider or downstream system could not be reached or answered unusably.static final StringThe work itself was rejected.static final StringThe worker lease expired before the attempt finished, so the attempt was abandoned.static final StringThe attempt exceeded its allotted time.static final StringThe handler threw something that does not fit any other kind. -
Method Summary
-
Field Details
-
DOMAIN
The work itself was rejected. Repeating it unchanged fails the same way.- See Also:
-
DEPENDENCY
An external provider or downstream system could not be reached or answered unusably.- See Also:
-
TIMEOUT
-
LEASE_LOSS
The worker lease expired before the attempt finished, so the attempt was abandoned.- See Also:
-
UNEXPECTED
The handler threw something that does not fit any other kind.- See Also:
-