Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop supervisor hogging a cpu. (#892)
Supervisor spends 100% of its time constantly polling the hundreds of FDs it has open, including checking if random log FDs are writeable. Despite not having anything to write, supervisor does this in effectively an infinite loop. By moving the stdout/err redirection to the command itself, we can avoid using that code at all.
- Loading branch information