querysub 0.73.0 → 0.74.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "querysub",
3
- "version": "0.73.0",
3
+ "version": "0.74.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -193,8 +193,6 @@ async function checkEdgeDomainsAlive() {
193
193
  // and it will be removed when we leave development
194
194
  ips = ips.filter(ip => ip !== "127.0.0.1");
195
195
 
196
- console.log(`Checking for dead records ${JSON.stringify(ips)}`);
197
-
198
196
  let results = await Promise.all(ips.map(async ip => {
199
197
  return await testTCPIsListening(ip, publicPort);
200
198
  }));