taskotron-dev: allow CRASHED outcome in ResultsDB

This commit is contained in:
Kamil Páral 2019-02-20 12:18:42 +01:00
parent 1722f1a63d
commit c65ca8cdae

View file

@ -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 %}