mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
Merge pull request #234 from dnadesign/pulls/process-timeout
Update Process timeout via Config
This commit is contained in:
commit
d1e37f28ee
@ -97,6 +97,10 @@ class SolrReindexImmediateHandler extends SolrReindexBase
|
||||
|
||||
// Execute script via shell
|
||||
$process = new Process($cmd);
|
||||
|
||||
// Set timeout from config. Process default is 60 seconds
|
||||
$process->setTimeout($this->config()->get('process_timeout'));
|
||||
|
||||
$process->inheritEnvironmentVariables();
|
||||
$process->run();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user