Skip to content

Commit

Permalink
fix(docker): better ignore quay.io
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Feb 15, 2020
1 parent 054c99f commit 64de057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/datasource/docker/index.ts
Expand Up @@ -560,7 +560,7 @@ async function getLabels(
'Timeout when attempting to connect to docker registry'
);
logger.debug({ err });
} else if (err.host === 'quay.io' && err.statusCode === 400) {
} else if (registry === 'https://quay.io') {
// istanbul ignore next
logger.debug(
'Ignoring quay.io errors until they fully support v2 schema'
Expand Down

0 comments on commit 64de057

Please sign in to comment.