From d85f4070f321e1c091105f0790178b72e408abd0 Mon Sep 17 00:00:00 2001 From: Tim Caswell Date: Tue, 27 Jun 2017 12:34:52 -0500 Subject: [PATCH] Remove warning about unknown keys in le urls --- lib/get-acme-urls.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/get-acme-urls.js b/lib/get-acme-urls.js index acb4276..85f71ad 100644 --- a/lib/get-acme-urls.js +++ b/lib/get-acme-urls.js @@ -39,11 +39,6 @@ module.exports.create = function (deps) { } } - if (5 !== Object.keys(data).length) { - console.warn("This Let's Encrypt / ACME server has been updated with urls that this client doesn't understand"); - console.warn(data); - } - if (!knownUrls.every(function (url) { return data[url]; })) {