From dd7ded3ca5a8bbd8415faa0f23dd1b25f92ae071 Mon Sep 17 00:00:00 2001 From: Josef Skladanka Date: Wed, 20 Feb 2019 13:35:13 +0100 Subject: [PATCH] Taskotron - fix resultsdb additional outcomes tuple --- roles/taskotron/resultsdb-backend/templates/settings.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/taskotron/resultsdb-backend/templates/settings.py.j2 b/roles/taskotron/resultsdb-backend/templates/settings.py.j2 index b5d9a5e810..765c0185dd 100644 --- a/roles/taskotron/resultsdb-backend/templates/settings.py.j2 +++ b/roles/taskotron/resultsdb-backend/templates/settings.py.j2 @@ -19,5 +19,5 @@ 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') +ADDITIONAL_RESULT_OUTCOMES = ('CRASHED', ) {% endif %}