Skip to content

Commit f2a06bc

Browse files
committedSep 29, 2020
fix(MongoInstance): try "SIGKILL" after timeout
- try "SIGKILL" if process didnt exit within 10 seconds - reject promise if process dosnt exit after sending "SIGKILL"
1 parent e563cf1 commit f2a06bc

File tree

1 file changed

+20
-9
lines changed

1 file changed

+20
-9
lines changed
 

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

+20-9
Original file line numberDiff line numberDiff line change
@@ -146,20 +146,31 @@ export default class MongoInstance {
146146
* Function to De-Duplicate Code
147147
* @param process The Process to kill
148148
* @param name the name used in the logs
149-
* @param debug the debug function
149+
* @param debugfn the debug function
150150
*/
151-
async function kill_internal(process: ChildProcess, name: string, debug: DebugFn) {
152-
await new Promise((resolve) => {
153-
const timeout = setTimeout(() => {
154-
debug('kill_internal timeout triggered');
155-
resolve();
156-
}, 1000 * 10);
151+
async function kill_internal(process: ChildProcess, name: string, debugfn: DebugFn) {
152+
const timeoutTime = 1000 * 10;
153+
await new Promise((resolve, reject) => {
154+
let timeout = setTimeout(() => {
155+
debugfn('kill_internal timeout triggered, trying SIGKILL');
156+
if (!debug.enabled('MongoMS:MongoInstance')) {
157+
console.warn(
158+
'An Process didnt exit with signal "SIGINT" within 10 seconds, using "SIGKILL"!\n' +
159+
'Enable debug logs for more information'
160+
);
161+
}
162+
process.kill('SIGKILL');
163+
timeout = setTimeout(() => {
164+
debugfn('kill_internal timeout triggered again, rejecting');
165+
reject(new Error('Process didnt exit, enable debug for more information.'));
166+
}, timeoutTime);
167+
}, timeoutTime);
157168
process.once(`exit`, (code, signal) => {
158-
debug(`- ${name}: got exit signal, Code: ${code}, Signal: ${signal}`);
169+
debugfn(`- ${name}: got exit signal, Code: ${code}, Signal: ${signal}`);
159170
clearTimeout(timeout);
160171
resolve();
161172
});
162-
debug(`- ${name}: send "SIGINT"`);
173+
debugfn(`- ${name}: send "SIGINT"`);
163174
process.kill('SIGINT');
164175
});
165176
}

0 commit comments

Comments
 (0)
Please sign in to comment.