mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 12:05:29 +00:00
Change config method & default timeout to null to disable.
This commit is contained in:
parent
d964214822
commit
cb3d3209bb
@ -98,11 +98,8 @@ class SolrReindexImmediateHandler extends SolrReindexBase
|
|||||||
// Execute script via shell
|
// Execute script via shell
|
||||||
$process = new Process($cmd);
|
$process = new Process($cmd);
|
||||||
|
|
||||||
// Set timeout from config. Process default is 60 seconds.
|
// Set timeout from config. Process default is 60 seconds
|
||||||
$timeout = Config::inst()->get(static::class, 'process_timeout');
|
$process->setTimeout($this->config()->get('process_timeout'));
|
||||||
if ($timeout) {
|
|
||||||
$process->setTimeout($timeout);
|
|
||||||
}
|
|
||||||
|
|
||||||
$process->inheritEnvironmentVariables();
|
$process->inheritEnvironmentVariables();
|
||||||
$process->run();
|
$process->run();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user