Compare commits

...

4 Commits

Author SHA1 Message Date
26d1b7cbf0 2.0.10 2019-01-07 01:08:50 +01:00
c0c97835ea fix(core): update 2019-01-07 01:08:50 +01:00
d4d50b7dcf 2.0.9 2019-01-07 01:00:58 +01:00
2492fd4de2 fix(core): update 2019-01-07 01:00:58 +01:00
3 changed files with 7 additions and 7 deletions

8
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartacme",
"version": "2.0.8",
"version": "2.0.10",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -138,9 +138,9 @@
}
},
"@pushrocks/smartdns": {
"version": "3.0.7",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartdns/-/smartdns-3.0.7.tgz",
"integrity": "sha512-qaLuTa2CWsdEuWNA0jz8QgiZJCG5DEGkbwa2g1rUlUy40TKfiHZralkTOMrBzXGGsDv3CZDBK4U5pWlxCsTrMQ==",
"version": "3.0.8",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartdns/-/smartdns-3.0.8.tgz",
"integrity": "sha512-f6cyO3FOnUJQTjHUjcePP6xMDytjk4DrmRDpqooQtMipTf8t0R25Yvg7GooSdWiBJDrIXHrXVu+oq82L5mFuUQ==",
"requires": {
"@pushrocks/smartdelay": "^2.0.2",
"@pushrocks/smartpromise": "^2.0.5"

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartacme",
"version": "2.0.8",
"version": "2.0.10",
"private": false,
"description": "acme implementation in TypeScript",
"main": "dist/index.js",
@ -26,7 +26,7 @@
"homepage": "https://gitlab.com/umbrellazone/smartacme#README",
"dependencies": {
"@pushrocks/smartdelay": "^2.0.2",
"@pushrocks/smartdns": "^3.0.7",
"@pushrocks/smartdns": "^3.0.8",
"@pushrocks/smartpromise": "^2.0.5",
"acme-client": "^2.2.1"
},

View File

@ -61,7 +61,7 @@ export class SmartAcme {
try {
/* Satisfy challenge */
await this.setChallenge(domainDnsName, keyAuthorization);
await this.smartdns.checkUntilAvailable(domainDnsName, 'TXT', keyAuthorization);
await this.smartdns.checkUntilAvailable(domainDnsName, 'TXT', keyAuthorization, 100, 5000);
/* Verify that challenge is satisfied */