@azteam/express 1.2.456 → 1.2.458

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/Server.js CHANGED
@@ -349,6 +349,7 @@ var Server = /*#__PURE__*/function () {
349
349
  });
350
350
  });
351
351
  var server = _http["default"].Server(app);
352
+ server.setTimeout(300000);
352
353
  server.on('listening', function () {
353
354
  _this4._alert('listening', "Server start at http://localhost:".concat(server.address().port));
354
355
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azteam/express",
3
- "version": "1.2.456",
3
+ "version": "1.2.458",
4
4
  "license": "MIT",
5
5
  "author": "toda <sp.azsolution.net@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@azteam/constant": "1.0.13",
13
- "@azteam/crypto": "1.0.41",
13
+ "@azteam/crypto": "1.0.42",
14
14
  "@azteam/error": "1.0.40",
15
15
  "@azteam/http-client": "1.0.202",
16
16
  "@azteam/util": "1.0.52",
package/src/Server.js CHANGED
@@ -325,6 +325,7 @@ class Server {
325
325
  });
326
326
 
327
327
  const server = http.Server(app);
328
+ server.setTimeout(300000);
328
329
 
329
330
  server.on('listening', () => {
330
331
  this._alert('listening', `Server start at http://localhost:${server.address().port}`);