Skip to content

Commit

Permalink
Updated Rector to commit 2ed1e94d153b5e40803275a7c1394be234d0cfae
Browse files Browse the repository at this point in the history
rectorphp/rector-src@2ed1e94 Restore timeout to keep compatible with formater CI runs, based on community feedback (#5468)
  • Loading branch information
TomasVotruba committed Jan 15, 2024
1 parent b13cc2e commit dbbdf42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Config/RectorConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function enableCollectors() : void
* 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);
Expand Down

0 comments on commit dbbdf42

Please sign in to comment.