Skip to content

Commit

Permalink
report status as outdated if the scheduler can not re-evaluated the
Browse files Browse the repository at this point in the history
repository because it needs to wait for other repos first
  • Loading branch information
adrianschroeter authored and lethliel committed Dec 12, 2018
1 parent d3994b6 commit c49f8e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -5686,7 +5686,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')
Expand Down

0 comments on commit c49f8e4

Please sign in to comment.