| Index: recipe_engine/run.py
|
| diff --git a/recipe_engine/run.py b/recipe_engine/run.py
|
| index 68c47b57d3a2812e5f8c637ccb680a1cb37255de..31aaaafacfc5423be71d5e0ddee5a92920314932 100644
|
| --- a/recipe_engine/run.py
|
| +++ b/recipe_engine/run.py
|
| @@ -419,6 +419,8 @@ class RecipeEngine(object):
|
| self._close_to_level(0)
|
| except recipe_api.StepFailure as f:
|
| result = {
|
| + # Include "recipe_result" so it doesn't get marked as infra failure.
|
| + "recipe_result": None,
|
| "reason": f.reason,
|
| "status_code": f.retcode or 1
|
| }
|
|
|