TenantAtlas/apps/platform/.pnpm-store/v10/files/ed/2ae6df7e957abc4daa4e9630bad6bef0645fec7257361d5271c0668fd5ae9c452aba8e0c41b6a0aaaedd85e5bc6c948e8bb151412ddeba71a23b3030f80821
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

45 lines
1.6 KiB
Plaintext

"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var watchdog_exports = {};
__export(watchdog_exports, {
setupExitWatchdog: () => setupExitWatchdog
});
module.exports = __toCommonJS(watchdog_exports);
var import_utils = require("../../utils");
var import_log = require("./log");
function setupExitWatchdog() {
let isExiting = false;
const handleExit = async (signal) => {
if (isExiting)
return;
isExiting = true;
setTimeout(() => process.exit(0), 15e3);
(0, import_log.testDebug)("gracefully closing " + import_utils.gracefullyCloseSet.size);
await (0, import_utils.gracefullyCloseAll)();
process.exit(0);
};
process.stdin.on("close", () => handleExit("close"));
process.on("SIGINT", () => handleExit("SIGINT"));
process.on("SIGTERM", () => handleExit("SIGTERM"));
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
setupExitWatchdog
});