From 52dc25f598f51001894a3632543dae17db2663d7 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Wed, 3 Oct 2018 16:07:15 +0200 Subject: [PATCH] fix: drop unmet-requirements --- lib/workers/branch/index.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js index a870e3f7d9..91da9b5905 100644 --- a/lib/workers/branch/index.js +++ b/lib/workers/branch/index.js @@ -259,7 +259,6 @@ async function processBranch(branchConfig, prHourlyLimitReached, packageFiles) { throw err; } if ( - err.message !== 'unmet-requirements' && err.message !== 'registry-failure' && err.message !== 'platform-failure' ) { @@ -333,10 +332,6 @@ async function processBranch(branchConfig, prHourlyLimitReached, packageFiles) { logger.debug('Passing PR error up'); throw err; } - if (err.message === 'unmet-requirements') { - logger.info('Skipping invalid update and continuing'); - return 'done'; - } // Otherwise don't throw here - we don't want to stop the other renovations logger.error({ err }, `Error ensuring PR: ${err.message}`); } -- GitLab