mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
|
|
if (parseInt(process.env.restart_time) === 5) {
|
|
setInterval(function() {
|
|
console.log('Im stable mamen')
|
|
}, 1000)
|
|
}
|
|
else {
|
|
throw new Error('Ugly error')
|
|
}
|