报错 pm2 too many unstable restarts

程序运行时间过短,例如只是简单的echo时, 运行15次就会提示 too many unstable restarts

解决

不管程序实际逻辑处理多久,都让运行的程序sleep一秒

#例如
<?php
   echo "foo";
   sleep(1);