possible fix for notify bug
This commit is contained in:
parent
3994c7fd5c
commit
5068097090
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@root/greenlock-express",
|
"name": "@root/greenlock-express",
|
||||||
"version": "3.0.15",
|
"version": "3.0.18",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@root/greenlock-express",
|
"name": "@root/greenlock-express",
|
||||||
"version": "3.0.17",
|
"version": "3.0.18",
|
||||||
"description": "Free SSL and managed or automatic HTTPS for node.js with Express, Koa, Connect, Hapi, and all other middleware systems.",
|
"description": "Free SSL and managed or automatic HTTPS for node.js with Express, Koa, Connect, Hapi, and all other middleware systems.",
|
||||||
"main": "greenlock-express.js",
|
"main": "greenlock-express.js",
|
||||||
"homepage": "https://greenlock.domains",
|
"homepage": "https://greenlock.domains",
|
||||||
|
|
|
@ -7,7 +7,7 @@ var msgPrefix = "greenlock:";
|
||||||
|
|
||||||
Worker.create = function() {
|
Worker.create = function() {
|
||||||
var greenlock = {};
|
var greenlock = {};
|
||||||
["getAcmeHttp01ChallengeResponse", "get", "notify"].forEach(function(k) {
|
["getAcmeHttp01ChallengeResponse", "get", "notify", "_notify"].forEach(function(k) {
|
||||||
greenlock[k] = function(args) {
|
greenlock[k] = function(args) {
|
||||||
return rpc(k, args);
|
return rpc(k, args);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue