@certd/acme-client 1.38.6 → 1.38.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/client.js +1 -1
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Simple and unopinionated ACME client",
4
4
  "private": false,
5
5
  "author": "nmorsman",
6
- "version": "1.38.6",
6
+ "version": "1.38.7",
7
7
  "type": "module",
8
8
  "module": "scr/index.js",
9
9
  "main": "src/index.js",
@@ -18,7 +18,7 @@
18
18
  "types"
19
19
  ],
20
20
  "dependencies": {
21
- "@certd/basic": "^1.38.6",
21
+ "@certd/basic": "^1.38.7",
22
22
  "@peculiar/x509": "^1.11.0",
23
23
  "asn1js": "^3.0.5",
24
24
  "axios": "^1.9.0",
@@ -70,5 +70,5 @@
70
70
  "bugs": {
71
71
  "url": "https://github.com/publishlab/node-acme-client/issues"
72
72
  },
73
- "gitHead": "1368259a1e780486204e9d814c88a741a373dcca"
73
+ "gitHead": "29d37075dd600fa4898c5e38611e09db522e32fc"
74
74
  }
package/src/client.js CHANGED
@@ -600,7 +600,7 @@ class AcmeClient {
600
600
  throw new Error(`[${d}] Unexpected item status: ${resp.data.status}`);
601
601
  };
602
602
 
603
- this.log(`[${d}] Waiting for valid status (等待valid状态): ${item.url}`, this.backoffOpts);
603
+ this.log(`[${d}] Waiting for valid status (等待valid状态): ${item.url}`, JSON.stringify(this.backoffOpts));
604
604
  return util.retry(verifyFn, this.backoffOpts);
605
605
  }
606
606