proper closing, metadata file locations moved

This commit is contained in:
michalcourson
2026-03-01 13:48:31 -05:00
parent 801966e8d8
commit d37cd773f8
10 changed files with 483 additions and 40 deletions

View File

@@ -63,6 +63,8 @@ export default class PythonSubprocessManager {
stop(): void {
if (this.process) {
// for some reason, process.kill() doens't work well with flask. todo: investigate further
// spawn('taskkill', ['/pid', `${this.process.pid}`, '/f', '/t']);
this.process.kill();
this.process = null;
}