You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
that's a good question. My setup needs about 3-4 Minutes for the sync, but it is not even that big, just the DB takes it's time. Maybe it should be close to the kill timeout? How about 9:55 minutes?
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
The text was updated successfully, but these errors were encountered: