Skip to content

Commit 4acd0ad

Browse files
authored
Merge pull request #6302 from keboola/zajca/fix-client-ci
ignore error in client
2 parents 629ec09 + d697e28 commit 4acd0ad

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Keboola/StorageApi/Client.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2309,6 +2309,7 @@ private function downloadGcsFile(array $fileInfo, string $destination): void
23092309
$object = $retBucket->object($fileInfo['gcsPath']['key']);
23102310
try {
23112311
$object->downloadToFile($destination);
2312+
// @phpstan-ignore-next-line catch.neverThrown
23122313
} catch (NotFoundException $e) {
23132314
throw new ClientException(
23142315
sprintf(self::ERROR_CANNOT_DOWNLOAD_FILE, $fileInfo['name'], $fileInfo['id']),

0 commit comments

Comments
 (0)