Open ipratico opened 1 year ago
If You are In Production, I Will recommend use pm2.
I'm interested in this as well. We run express.js in our Puppeteer testing. Once the test is complete, we need to gracefully exit express.js. However, express-status-monitor is blocking this.
Hello, I'm using a graceful shutdown to close my express server:
server.close()
stops the server from accepting new connections and call the function after all the existing connections are finished. If someone has the page/status
open the server won't close because the socket is still open and stays open until the page is closed.Is there a way to force disconnect all the sockets connected? I know that socket.io provides this function:
io.disconnectSockets()
, but how can I access to the "io" instance of express-status-monitor?