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