v3.0.1: bugfix for challenge url

This commit is contained in:
AJ ONeal 2019-04-07 21:25:09 -06:00
parent 90d328b37f
commit 35c396a321
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ function run(challenger, opts) {
query.identifier = ch.identifier;
query.token = ch.token;
// For testing only
query.url = ch.token;
query.url = ch.challengeUrl;
} else if ('dns-01' === ch.type) {
query.identifier = { type: 'dns', value: ch.dnsHost };
// For testing only

View File

@ -1,6 +1,6 @@
{
"name": "greenlock-challenge-test",
"version": "3.0.0",
"version": "3.0.1",
"description": "The base set of tests for all ACME challenge strategies. Any `greenlock-challenge-` plugin should be able to pass these tests.",
"main": "index.js",
"dependencies": {},