Skip to content

Commit

Permalink
internal: stop pid override in logs (#4294)
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph authored Dec 12, 2023
1 parent 95afa61 commit 8d19806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detox/src/utils/childProcess/spawn.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function interruptProcess(childProcessPromise, schedule) {
const childProcess = childProcessPromise.childProcess;
const cpid = childProcess.pid;
const spawnargs = childProcess.spawnargs.join(' ');
const log = rootLogger.child({ event: 'SPAWN_KILL', pid: cpid });
const log = rootLogger.child({ event: 'SPAWN_KILL', cpid });

const handles = _.mapValues({ ...DEFAULT_KILL_SCHEDULE, ...schedule }, (ms, signal) => {
return setTimeout(() => {
Expand Down

0 comments on commit 8d19806

Please sign in to comment.