mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 10:57:35 -02:30
support distributed project updates
This commit is contained in:
@@ -59,7 +59,7 @@ class DependencyGraph(object):
|
||||
return True
|
||||
|
||||
# TODO: Other finished, failed cases? i.e. error ?
|
||||
if latest_project_update['status'] == 'failed':
|
||||
if latest_project_update['status'] in ['failed', 'canceled']:
|
||||
return True
|
||||
|
||||
'''
|
||||
@@ -89,7 +89,7 @@ class DependencyGraph(object):
|
||||
return True
|
||||
|
||||
# TODO: Other finished, failed cases? i.e. error ?
|
||||
if latest_inventory_update['status'] == 'failed':
|
||||
if latest_inventory_update['status'] in ['failed', 'canceled']:
|
||||
return True
|
||||
|
||||
'''
|
||||
|
||||
Reference in New Issue
Block a user