From da820db4e10337d85886ce7c2cd72f9c4230167b Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Sun, 21 Jan 2024 20:48:53 +1000 Subject: [PATCH] Fix startup hang due to unresolved promise Affects instances where there are certs but none of them are dns validated --- backend/lib/certbot.js | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/lib/certbot.js b/backend/lib/certbot.js index 3b15f007..eb1966dc 100644 --- a/backend/lib/certbot.js +++ b/backend/lib/certbot.js @@ -16,6 +16,7 @@ const certbot = { return new Promise((resolve, reject) => { if (pluginKeys.length === 0) { + resolve(); return; }