We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547ed63 commit fa4ab0bCopy full SHA for fa4ab0b
src/libraries/Executor.ts
@@ -37,7 +37,10 @@ class Executor {
37
38
async #killProcess(process: ChildProcess): Promise<boolean> {
39
// If the process has already been killed, return true
40
- if (process.kill(0) === false) return true
+ if (process.kill(0) === false) {
41
+ this.logger.warn('Called #killProcess to kill mysqld but it has already been killed.')
42
+ return true
43
+ }
44
45
return process.kill()
46
}
0 commit comments