@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove obsolete write to "pid" property in "annihilateProcessGroup()" in Daemon Overseer

Summary: Ref T13579. This property was removed in D21425, but I missed this usage site. Remove the assignment; this class no longer tracks the subprocess PID directly.

Test Plan: Searched for "->pid", no further hits.

Maniphest Tasks: T13579

Differential Revision: https://secure.phabricator.com/D21452

-1
-1
src/infrastructure/daemon/PhutilDaemonHandle.php
··· 356 356 posix_kill(-$pgid, SIGTERM); 357 357 sleep($this->getKillDelay()); 358 358 posix_kill(-$pgid, SIGKILL); 359 - $this->pid = null; 360 359 } 361 360 } 362 361 }