OnError handling types for Actions

+1

Just to add to this here are the types of error handlers Make has to offer…

  • Resume allows you to specify a substitute output for the module with the error and the scenario execution status is marked as a success.
  • Ignore simply ignores the error and the scenario execution status is marked as a success
  • Break stores the input to the queue of incomplete executions and the scenario execution status is marked as a warning.

On the other hand, if a scenario execution should be stopped, one of the following directives need to be used:

  • Rollback stops the scenario execution immediately and marks its status as an error
  • Commit stops the scenario execution immediately and marks its status as a success
3 Likes