@abtnode/router-provider 1.6.14 → 1.6.18

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 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 = 4096;
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.14",
3
+ "version": "1.6.18",
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,10 +32,10 @@
32
32
  "url": "https://github.com/ArcBlock/blocklet-server/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@abtnode/constant": "1.6.14",
36
- "@abtnode/logger": "1.6.14",
37
- "@abtnode/router-templates": "1.6.14",
38
- "@abtnode/util": "1.6.14",
35
+ "@abtnode/constant": "1.6.18",
36
+ "@abtnode/logger": "1.6.18",
37
+ "@abtnode/router-templates": "1.6.18",
38
+ "@abtnode/util": "1.6.18",
39
39
  "axios": "^0.21.4",
40
40
  "debug": "^4.3.3",
41
41
  "find-process": "^1.4.3",
@@ -52,5 +52,5 @@
52
52
  "devDependencies": {
53
53
  "fs-extra": "^10.0.0"
54
54
  },
55
- "gitHead": "0ae215d5cf1160631bdd9b64639c8fcf80eb2d5f"
55
+ "gitHead": "2f02f166869d8ebedc0466068f6ed90ab3e07b87"
56
56
  }