Any idea why after `server.close` the process remains running? The session middleware seems to be the cause: ```js app.use(session({store: 'memory'})) ``` Ok, it's the `scheduleGc` https://github.com/curveball/session/blob/master/src/memorystore.ts#L97 ...
Any idea why after
server.closethe process remains running?The session middleware seems to be the cause:
Ok, it's the
scheduleGchttps://github.com/curveball/session/blob/master/src/memorystore.ts#L97 ...