const destroyOnSignal = (strapi)=>{ let signalReceived = false; // For unknown reasons, we receive signals 2 times. // As a temporary fix, we ignore the signals received after the first one. const terminateStrapi = async ()=>{ if (!signalReceived) { signalReceived = true; await strapi.destroy(); process.exit(); } }; [ 'SIGTERM', 'SIGINT' ].forEach((signal)=>{ process.on(signal, terminateStrapi); }); }; export { destroyOnSignal }; //# sourceMappingURL=signals.mjs.map