v3.0.1: bugfix for challenge url
This commit is contained in:
parent
90d328b37f
commit
35c396a321
2
index.js
2
index.js
|
@ -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
|
||||
|
|
|
@ -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": {},
|
||||
|
|
Loading…
Reference in New Issue