v1.7.3: don't wait so longer on dns test
This commit is contained in:
parent
a7ea231c2e
commit
6cd4bd1587
4
node.js
4
node.js
|
@ -315,8 +315,8 @@ ACME._testChallenges = function (me, options) {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
if ('dns-01' === challenge.type) {
|
if ('dns-01' === challenge.type) {
|
||||||
// nameservers take a second to propagate
|
// Give the nameservers a moment to propagate
|
||||||
CHECK_DELAY = 5 * 1000;
|
CHECK_DELAY = 1.5 * 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Promise.resolve().then(function () {
|
return Promise.resolve().then(function () {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "acme-v2",
|
"name": "acme-v2",
|
||||||
"version": "1.7.2",
|
"version": "1.7.3",
|
||||||
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js",
|
"description": "Free SSL. A framework for building Let's Encrypt v2 clients, and other ACME v2 (draft 11) clients. Successor to le-acme-core.js",
|
||||||
"homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
|
"homepage": "https://git.coolaj86.com/coolaj86/acme-v2.js",
|
||||||
"main": "node.js",
|
"main": "node.js",
|
||||||
|
|
Loading…
Reference in New Issue