@abtnode/router-provider 1.16.45-beta-20250610-112229-2eb0face → 1.16.45-beta-20250612-231219-481217be
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/lib/nginx/index.js +7 -1
- package/package.json +7 -7
package/lib/nginx/index.js
CHANGED
|
@@ -331,7 +331,13 @@ class NginxProvider extends BaseProvider {
|
|
|
331
331
|
const command = `${this.binPath} -t -c ${this.configPath} -p ${this.configDir}`; // eslint-disable-line no-param-reassign
|
|
332
332
|
const result = shelljs.exec(command, { silent: true });
|
|
333
333
|
if (result.code !== 0) {
|
|
334
|
-
logger.error(`exec ${command} error`, {
|
|
334
|
+
logger.error(`exec ${command} error`, {
|
|
335
|
+
binPath: this.binPath,
|
|
336
|
+
configPath: this.configPath,
|
|
337
|
+
configDir: this.configDir,
|
|
338
|
+
errorMessage: result.stderr,
|
|
339
|
+
code: result.code,
|
|
340
|
+
});
|
|
335
341
|
throw new Error(`${formatError(result.stderr)}`);
|
|
336
342
|
}
|
|
337
343
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/router-provider",
|
|
3
|
-
"version": "1.16.45-beta-
|
|
3
|
+
"version": "1.16.45-beta-20250612-231219-481217be",
|
|
4
4
|
"description": "Routing engine implementations for abt node",
|
|
5
5
|
"author": "polunzh <polunzh@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/ArcBlock/blocklet-server#readme",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@abtnode/constant": "1.16.45-beta-
|
|
36
|
-
"@abtnode/db-cache": "1.16.45-beta-
|
|
37
|
-
"@abtnode/logger": "1.16.45-beta-
|
|
38
|
-
"@abtnode/router-templates": "1.16.45-beta-
|
|
39
|
-
"@abtnode/util": "1.16.45-beta-
|
|
35
|
+
"@abtnode/constant": "1.16.45-beta-20250612-231219-481217be",
|
|
36
|
+
"@abtnode/db-cache": "1.16.45-beta-20250612-231219-481217be",
|
|
37
|
+
"@abtnode/logger": "1.16.45-beta-20250612-231219-481217be",
|
|
38
|
+
"@abtnode/router-templates": "1.16.45-beta-20250612-231219-481217be",
|
|
39
|
+
"@abtnode/util": "1.16.45-beta-20250612-231219-481217be",
|
|
40
40
|
"@arcblock/http-proxy": "^1.19.1",
|
|
41
41
|
"@arcblock/is-valid-domain": "^1.0.5",
|
|
42
42
|
"@ocap/util": "^1.20.14",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"bluebird": "^3.7.2",
|
|
63
63
|
"fs-extra": "^11.2.0"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "01a3fb21f16a515e2565d12797baeda5fdf585b0"
|
|
66
66
|
}
|