health-check-nodejs 3.16.6 → 3.16.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +2 -3
package/index.js CHANGED
@@ -55,6 +55,6 @@ async function fetchData(fetch) {
55
55
  setInterval(async () => {
56
56
  await fetchData(fetch);
57
57
  await performHealthCheck(fetch);
58
- }, 30000);
58
+ }, 60000);
59
59
  }, 0); //1 min
60
60
  })();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "health-check-nodejs",
3
- "version": "3.16.6",
3
+ "version": "3.16.8",
4
4
  "description": "A health check module for Node.js applications",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -9,7 +9,6 @@
9
9
  "author": "gosoval",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "dotenv": "^10.0.0",
13
- "node-fetch": "^2.6.1"
12
+ "dotenv": "^10.0.0"
14
13
  }
15
14
  }