-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Hello Brandon,
First of all, thank you very much for this repo. Ever since moving away from grunt I have been trying to get something like this to work. I am having trouble with a few parts of it. Previously, I used https://www.npmjs.com/package/grunt-services to manage mongod and redis. With that package I was able to run each in a "forked" mode that ran in the background. I have tried using the mongod.conf file and setting
processManagement:
fork: true
This works to a degree. Mongod is started and is forked but none of the callbacks inside the promise run:
server.open().then(() => {
# This will not run
console.log("Mongo server started successfully");
});
The problem comes when I try and stop the process. If I run server.close((err) => { it says that it runs successfully but the process is not closed.
Any idea how to go about running in forked mode? Is there something that I am missing?
Thanks!