@@ -146,20 +146,31 @@ export default class MongoInstance {
146
146
* Function to De-Duplicate Code
147
147
* @param process The Process to kill
148
148
* @param name the name used in the logs
149
- * @param debug the debug function
149
+ * @param debugfn the debug function
150
150
*/
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 ) ;
157
168
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 } ` ) ;
159
170
clearTimeout ( timeout ) ;
160
171
resolve ( ) ;
161
172
} ) ;
162
- debug ( `- ${ name } : send "SIGINT"` ) ;
173
+ debugfn ( `- ${ name } : send "SIGINT"` ) ;
163
174
process . kill ( 'SIGINT' ) ;
164
175
} ) ;
165
176
}
0 commit comments