Giter VIP home page Giter VIP logo

Comments (4)

Leegorous avatar Leegorous commented on August 11, 2024 3

same to me.

I can reproduce it on ubuntu 18.04.

According to https://nodejs.org/api/child_process.html#child_process_subprocess_kill_signal

On Linux, child processes of child processes will not be terminated when attempting to kill their parent. This is likely to happen when running a new process in a shell or with the use of the shell option of ChildProcess

from mediasoup3-record-demo.

conandark avatar conandark commented on August 11, 2024

on ios device

from mediasoup3-record-demo.

ethand91 avatar ethand91 commented on August 11, 2024

I think this occurs on linux? I can't reproduce it on my local mac.
Will look into it, can you tell me the OS of the server?

from mediasoup3-record-demo.

snowflaxGitRepo avatar snowflaxGitRepo commented on August 11, 2024

in gstream file add this code

kill () {
console.log('kill() [pid:%d]', this._process.pid);
this._process.kill('SIGINT');
this.killSubprocesses(this._process.pid)
}

killSubprocesses(pid) {
try {
const output = require('child_process').execSync(pgrep -P ${pid}).toString();
const pids = output.trim().split('\n');
pids.forEach(subpid => {
process.kill(subpid, 'SIGTERM'); // Send SIGTERM signal to subprocess
killSubprocesses(subpid); // Recursively kill subprocesses of subprocess
});
} catch (err) {
// Ignore errors
}
}

from mediasoup3-record-demo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.