2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-06-18 17:40:45 +00:00

Correct overzealous deletion

Selection error caused if statement to have syntax error.
This commit is contained in:
Jarrod Johnson
2017-08-03 09:41:21 -04:00
parent 05715c6826
commit c8fbb58ae9
+1 -1
View File
@@ -72,7 +72,7 @@ def run():
run_cmdv(node, cmdv, all, pipedesc)
else:
pendingexecs.append((node, cmdv))
if not all or exitcode
if not all or exitcode:
sys.exit(exitcode)
rdy, _, _ = select.select(all, [], [], 10)
while all: