@abtnode/router-provider 1.6.16 → 1.6.20
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/util.js +1 -1
- package/package.json +7 -7
package/lib/nginx/util.js
CHANGED
|
@@ -14,7 +14,7 @@ const { template404, template502, template5xx, templateWelcome } = require('@abt
|
|
|
14
14
|
const logger = require('@abtnode/logger')(`${require('../../package.json').name}:provider:nginx:util`);
|
|
15
15
|
|
|
16
16
|
const CLIENT_MAX_BODY_SIZE = process.env.MAX_UPLOAD_FILE_SIZE || MAX_UPLOAD_FILE_SIZE;
|
|
17
|
-
const WORKER_CONNECTIONS =
|
|
17
|
+
const WORKER_CONNECTIONS = 1000 * 10; // 10K
|
|
18
18
|
|
|
19
19
|
const formatError = (errStr) => {
|
|
20
20
|
if (!errStr) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/router-provider",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.20",
|
|
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.6.
|
|
36
|
-
"@abtnode/logger": "1.6.
|
|
37
|
-
"@abtnode/router-templates": "1.6.
|
|
38
|
-
"@abtnode/util": "1.6.
|
|
39
|
-
"axios": "^0.
|
|
35
|
+
"@abtnode/constant": "1.6.20",
|
|
36
|
+
"@abtnode/logger": "1.6.20",
|
|
37
|
+
"@abtnode/router-templates": "1.6.20",
|
|
38
|
+
"@abtnode/util": "1.6.20",
|
|
39
|
+
"axios": "^0.25.0",
|
|
40
40
|
"debug": "^4.3.3",
|
|
41
41
|
"find-process": "^1.4.3",
|
|
42
42
|
"fkill": "^7.0.1",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"fs-extra": "^10.0.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "e695a9fa4e2cbf7fcef554be3309090c37919d94"
|
|
56
56
|
}
|