The sync processes are created with the default timeout of 60s
$process = Process::fromShellCommandline($cmd);
This might not be enough for slow servers/connections or initial sync runs. Can the timeout be increased or made configurable from the ext config? My DB imports unfortunately take a bit longer then 60s
public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60)
The sync processes are created with the default timeout of 60s
This might not be enough for slow servers/connections or initial sync runs. Can the timeout be increased or made configurable from the ext config? My DB imports unfortunately take a bit longer then 60s