chg: [internal] Add BACKGROUND_JOB_ID to new process

pull/7970/head
Jakub Onderka 2021-11-18 13:22:53 +01:00
parent c34dee0b01
commit 1a719649df
1 changed files with 3 additions and 1 deletions

View File

@ -85,7 +85,9 @@ class BackgroundJob implements JsonSerializable
$this->args()
),
$descriptorSpec,
$pipes
$pipes,
null,
['BACKGROUND_JOB_ID' => $this->id]
);
$stdout = stream_get_contents($pipes[1]);