Compare commits

...

2 Commits

Author SHA1 Message Date
Guy Sartorelli 8ef542d4e4
Merge pull request #351 from LeviWB/fix/remove-undefined-method
FIX Remove call to process::inheritEnvironmentVariables()
2023-08-10 11:26:45 +12:00
Levi Wilson-Brown 526ee734be FIX Remove call to process::inheritEnvironmentVariables()
inheritEnvironmentVariables() was removed from the Symfony Process component in 5.0.0, as enviroment variables are always inherited.
2023-08-09 18:18:54 +12:00
1 changed files with 0 additions and 1 deletions

View File

@ -104,7 +104,6 @@ class SolrReindexImmediateHandler extends SolrReindexBase
// Set timeout from config. Process default is 60 seconds
$process->setTimeout($this->config()->get('process_timeout'));
$process->inheritEnvironmentVariables();
$process->run();
$res = $process->getOutput();