querysub 0.75.0 → 0.76.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.75.0",
3
+ "version": "0.76.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",
@@ -248,7 +248,7 @@ async function getHTTPSKeyCertInner(callerIP: string) {
248
248
  runInfinitePoll(timeInMinute * 5, async () => {
249
249
  let ips = await getRecords("A", edgeDomain);
250
250
  if (!ips.includes(callerIP)) {
251
- console.error(`Our A record for ${edgeDomain} is no longer pointing to our ip. Terminating, hopefully when we restart we will fix it. This SHOULDN'T happen often!`);
251
+ console.error(`Our A record for ${edgeDomain} is no longer pointing to our ip (${callerIP}, as it is now pointing to ${JSON.stringify(ips)}). Terminating, hopefully when we restart we will fix it. This SHOULDN'T happen often!`);
252
252
  await shutdown();
253
253
  }
254
254
  });