MegaDetector GUI v0.0.2-test
Pre-release
Pre-release
petargyurov
released this
03 Sep 10:03
·
2 commits
to petar/fix/max-buffer-issue
since this release
Small update to fix #31
- Previously we were using
execFile
to spawn the child process; this imposes as buffer limit and is not designed for long running communication between the parent and child processes. - The fix is to use
spawn
which doesn't impose a max buffer limit - This should allow us to process for much longer times, in theory, unlimited time/buffer.