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)
pull/42410/head
Ryan Reed 6 years ago committed by Ganesh Nalawade
parent dd73bae51a
commit e215f842ba

@ -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]

Loading…
Cancel
Save