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:
parent
05715c6826
commit
c8fbb58ae9
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user