@certd/acme-client 1.29.5 → 1.30.0
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.
- package/package.json +3 -3
- package/src/axios.js +1 -0
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.
|
|
6
|
+
"version": "1.30.0",
|
|
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.
|
|
21
|
+
"@certd/basic": "^1.30.0",
|
|
22
22
|
"@peculiar/x509": "^1.11.0",
|
|
23
23
|
"asn1js": "^3.0.5",
|
|
24
24
|
"axios": "^1.7.2",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"bugs": {
|
|
66
66
|
"url": "https://github.com/publishlab/node-acme-client/issues"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "9a78dad57619e02d1390cf5a013695a2aaf20e64"
|
|
69
69
|
}
|
package/src/axios.js
CHANGED
|
@@ -126,6 +126,7 @@ instance.interceptors.response.use(null, async (error) => {
|
|
|
126
126
|
|
|
127
127
|
/* Wait and retry the request */
|
|
128
128
|
await new Promise((resolve) => { setTimeout(resolve, (retryAfter * 1000)); });
|
|
129
|
+
log(`Retrying request to URL ${config.url}`);
|
|
129
130
|
return instance(config);
|
|
130
131
|
}
|
|
131
132
|
}
|