try to fix "too many open files" error
This commit is contained in:
parent
02b36516b4
commit
f0ec192e8d
|
@ -34,8 +34,10 @@ proc asyncExecCmd*(command: string): Future[string] =
|
||||||
(result, exitCode) = execCmdEx(command)
|
(result, exitCode) = execCmdEx(command)
|
||||||
if exitCode != 0:
|
if exitCode != 0:
|
||||||
failureEvent.trigger()
|
failureEvent.trigger()
|
||||||
|
successEvent.close()
|
||||||
else:
|
else:
|
||||||
successEvent.trigger()
|
successEvent.trigger()
|
||||||
|
failureEvent.close()
|
||||||
let flowVar = spawn execCmdBackground(successEvent, failureEvent, command)
|
let flowVar = spawn execCmdBackground(successEvent, failureEvent, command)
|
||||||
proc successCallback(fd: AsyncFD): bool =
|
proc successCallback(fd: AsyncFD): bool =
|
||||||
future.complete(^flowVar)
|
future.complete(^flowVar)
|
||||||
|
|
Loading…
Reference in New Issue