diff --git a/lib/workers/repository/process/limits.ts b/lib/workers/repository/process/limits.ts index f9525e5420577b16761a4141ae8a775132d237fd..26489f4a8389025fff6df50fadc6123818175fb3 100644 --- a/lib/workers/repository/process/limits.ts +++ b/lib/workers/repository/process/limits.ts @@ -60,7 +60,12 @@ export async function getConcurrentPrsRemaining( openPrs.push(pr); } } catch (err) { - // no-op + // istanbul ignore if + if (err instanceof ExternalHostError) { + throw err; + } else { + // no-op + } } } logger.debug(`${openPrs.length} PRs are currently open`);