Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Agent: Use spawn context for LDAP server process
Forked processes will inherit all resources from the parent process. This includes the socket we use for ensuring only a single agent is running at any given time. Additionaly, threads will also be inherited by the forked process, which could cause problems. Using a spawn context should fix our singleton issue, and give the process a cleaner environment in which to run. Issue #2820
- Loading branch information