From 5129c5d6014c8d32f81a16fe7afc6cb98b08baac Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 13 Jan 2019 19:15:03 +0100 Subject: [PATCH] fix(core): update --- ts/smartacme.classes.smartacme.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/smartacme.classes.smartacme.ts b/ts/smartacme.classes.smartacme.ts index 788d9dc..f5cc538 100644 --- a/ts/smartacme.classes.smartacme.ts +++ b/ts/smartacme.classes.smartacme.ts @@ -152,6 +152,8 @@ export class SmartAcme { /* Satisfy challenge */ await this.setChallenge(domainDnsName, keyAuthorization); await this.smartdns.checkUntilAvailable(domainDnsName, 'TXT', keyAuthorization, 100, 5000); + console.log('Cool down an extra 60 second for region availability'); + await plugins.smartdelay.delayFor(60000); /* Verify that challenge is satisfied */ await this.client.verifyChallenge(authz, dnsChallenge);