We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7b7ad commit 3e59fddCopy full SHA for 3e59fdd
runbot/models/ir_logging.py
@@ -40,7 +40,7 @@ def create(self, vals_list):
40
if build.local_state != 'running':
41
if ir_log['level'].upper() == 'WARNING':
42
build.local_result = 'warn'
43
- elif ir_log['level'].upper() == 'ERROR':
+ elif ir_log['level'].upper() in ('ERROR', 'CRITICAL'):
44
build.local_result = 'ko'
45
return super().create(vals_list)
46
0 commit comments