I would like to launch my function but when the code returns an error 503 responds to the process exit
however the function does not restart you know why?
process.on ('unhandledRejection', async (reason, p) => {
console.error ('Unhandled Rejection at: Promise', p, 'reason:', reason);
run();
if(nodeStatusCodes[503]){
process.exit();
}
});
``````````````````````````````