Details
-
Fix
-
Status: Released (View Workflow)
-
Major
-
Resolution: Fixed
-
1.13.3
-
None
Description
Current Situation
With JOC-874 a possibly NullPointerException can be raised if a Job has an error at a Job Chain Node where an error_state is not configured, e.g.
<job_chain> <!-- we assume that the job 'jobExit2' has an exit code 2 --> <job_chain_node job="jobExit2" state="start"/> </job_chain>
It is recommend that each Job Chain Node has a next_state and an error_state, e.g.
<job_chain> <job_chain_node job="jobExit2" next_state="success" error_state="error" state="start"/> <job_chain_node state="success"/> <job_chain_node state="error"/> </job_chain>
Desired Behavior
The possibly NullPointerException should be fixed.
Attachments
Issue Links
- is affected by
-
JOC-874 If an Order ends in a node with a name that contains "success" then the Order is considered successful even if the final Job in the Job Chain had an error
- Released