1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-14 17:46:17 +01:00

report status as outdated if the scheduler can not re-evaluated the

repository because it needs to wait for other repos first
This commit is contained in:
Adrian Schröter 2018-11-26 16:42:17 +01:00
parent 28fdb9e991
commit 74ed6a5b9a

View File

@ -5644,7 +5644,7 @@ def result_xml_to_dicts(xml):
rmap['repository'] = rmap['repo'] = rmap['rep'] = node.get('repository')
rmap['arch'] = node.get('arch')
rmap['state'] = node.get('state')
rmap['dirty'] = node.get('dirty') == 'true'
rmap['dirty'] = node.get('dirty') == 'true' or node.get('code') == 'blocked'
rmap['repostate'] = node.get('code')
rmap['pkg'] = rmap['package'] = rmap['pac'] = ''
rmap['code'] = node.get('code')