titan-agent 7.1.0 → 7.2.1

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.
@@ -705,7 +705,7 @@ async function startGateway(options) {
705
705
  logger.info(COMPONENT, "\u2705 Self-modification is active \u2014 writes are staged for human review");
706
706
  }
707
707
  cleanupStaleSessions();
708
- setInterval(() => cleanupStaleSessions(), 60 * 1e3);
708
+ setInterval(() => cleanupStaleSessions(), 60 * 1e3).unref();
709
709
  const portAvailable = await new Promise((resolve2) => {
710
710
  const tester = net.createServer();
711
711
  tester.once("error", () => resolve2(false));