Correcting conditionals looping (#43331)

Empty conditionals would not break out of the loop, causing every command to be run for the same number of times as retries is defined (10 by default)
This commit is contained in:
Ryan Reed 2018-07-27 01:12:34 -04:00 committed by Ganesh Nalawade
parent dd73bae51a
commit e215f842ba

View file

@ -212,10 +212,10 @@ def main():
break
conditionals.remove(item)
if not conditionals:
break
if not conditionals:
break
time.sleep(interval)
time.sleep(interval)
if conditionals:
failed_conditions = [item.raw for item in conditionals]