Updated Rector to commit 2ed1e94d153b5e40803275a7c1394be234d0cfae

2ed1e94d15 Restore timeout to keep compatible with formater CI runs, based on community feedback (#5468)
This commit is contained in:
Tomas Votruba 2024-01-15 18:01:33 +00:00
parent b13cc2ebb6
commit dbbdf42842
2 changed files with 3 additions and 3 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'e17f4526a7aa8344d0bfbf61d16d125970a3d31a';
public const PACKAGE_VERSION = '2ed1e94d153b5e40803275a7c1394be234d0cfae';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-01-14 17:51:07';
public const RELEASE_DATE = '2024-01-15 18:59:23';
/**
* @var int
*/

View File

@ -75,7 +75,7 @@ final class RectorConfig extends Container
* Defaults in sync with https://phpstan.org/config-reference#parallel-processing
* as we run PHPStan as well
*/
public function parallel(int $processTimeout = 60, int $maxNumberOfProcess = 32, int $jobSize = 20) : void
public function parallel(int $processTimeout = 120, int $maxNumberOfProcess = 32, int $jobSize = 20) : void
{
SimpleParameterProvider::setParameter(Option::PARALLEL, \true);
SimpleParameterProvider::setParameter(Option::PARALLEL_JOB_TIMEOUT_IN_SECONDS, $processTimeout);