From c65ca8cdaefaef337ead9f1e10276e181c069abf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20P=C3=A1ral?= Date: Wed, 20 Feb 2019 12:18:42 +0100 Subject: [PATCH] taskotron-dev: allow CRASHED outcome in ResultsDB --- roles/taskotron/resultsdb-backend/templates/settings.py.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/taskotron/resultsdb-backend/templates/settings.py.j2 b/roles/taskotron/resultsdb-backend/templates/settings.py.j2 index 92514b8006..b5d9a5e810 100644 --- a/roles/taskotron/resultsdb-backend/templates/settings.py.j2 +++ b/roles/taskotron/resultsdb-backend/templates/settings.py.j2 @@ -15,3 +15,9 @@ MESSAGE_BUS_PUBLISH_TASKOTRON = True MESSAGE_BUS_PLUGIN = 'fedmsg' MESSAGE_BUS_KWARGS = {'modname': 'resultsdb'} + +{% if deployment_type in ['dev']%} +# Extend the list of allowed outcomes +# See: https://pagure.io/task-abicheck/issue/19 +ADDITIONAL_RESULT_OUTCOMES = ('CRASHED') +{% endif %}