| Index: recipe_engine/types.py
|
| diff --git a/recipe_engine/types.py b/recipe_engine/types.py
|
| index d14244cfb3b63c0b89686d400c9a039763478b00..1a81bd7900bd124d77d954069504163172fe2495 100644
|
| --- a/recipe_engine/types.py
|
| +++ b/recipe_engine/types.py
|
| @@ -174,6 +174,14 @@ class StepData(object):
|
| self._retcode = retcode
|
|
|
| self._presentation = StepPresentation()
|
| + if retcode in step_config.ok_ret:
|
| + self._presentation.status = 'SUCCESS'
|
| + else:
|
| + if not step_config.infra_step:
|
| + self._presentation.status = 'FAILURE'
|
| + else:
|
| + self._presentation.status = 'EXCEPTION'
|
| +
|
| self.abort_reason = None
|
|
|
| @property
|
|
|