2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +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

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: