Skip to content

Commit 895ce9e

Browse files
committed
debug issue bot
1 parent 01737c5 commit 895ce9e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

issue-bot/src/Console/DownloadCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9494
foreach ([70200, 70300, 70400, 80000, 80100, 80200, 80300, 80400, 80500] as $phpVersion) {
9595
$phpVersionHashes = [];
9696
foreach ($cachedResults as $hash => $result) {
97+
if (!in_array($hash, ['b5608f0c-7a9c-4523-b183-1522542df383', 'c5570021-84fc-420b-9918-9576eee19760', '86006153-0f1b-4760-aeb7-4f2dfd3dd546'])) {
98+
continue;
99+
}
97100
$resultPhpVersions = array_keys($result->getVersionedErrors());
98101
if ($resultPhpVersions === [70400]) {
99102
$resultPhpVersions = [70200, 70300, 70400, 80000];

issue-bot/src/Console/EvaluateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9999
$originalTabs = $this->tabCreator->create($originalErrors);
100100

101101
if (!array_key_exists($hash, $newResults)) {
102-
throw new Exception(sprintf('Hash %s does not exist in new results.', $hash));
102+
continue;
103103
}
104104

105105
$originalPhpVersions = array_keys($originalErrors);

0 commit comments

Comments
 (0)