Skip to content

Commit 611f227

Browse files
hasezoeynodkz
authored andcommittedSep 8, 2020
fix(MongoInstance): use environment variable "NODE" before "argv[0]"
fixes #177
1 parent 76889a6 commit 611f227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/mongodb-memory-server-core/src/util/MongoInstance.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export default class MongoInstance {
204204
this.debug(`Called MongoInstance._launchKiller(parent: ${parentPid}, child: ${childPid}):`);
205205
// spawn process which kills itself and mongo process if current process is dead
206206
const killer = spawnChild(
207-
process.argv[0],
207+
process.env['NODE'] ?? process.argv[0], // try Environment variable "NODE" before using argv[0]
208208
[
209209
path.resolve(__dirname, '../../scripts/mongo_killer.js'),
210210
parentPid.toString(),

0 commit comments

Comments
 (0)
Please sign in to comment.