From 3924323abf7234c95aec7b257cca161af8c6b2df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20L=C3=B3pez=20Dato?= Date: Fri, 26 May 2017 12:21:20 -0300 Subject: [PATCH] Remove warning when non-recognized ACME URLs are received When retrieving ACME URLs from the LE staging server, LE will respond with random entries as described in https://community.letsencrypt.org/t/adding-random-entries-to-the-directory/33417. The official guideline is that any unrecognized entries should be ignored, so this warning should be removed. --- 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]; })) {