We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any idea why after server.close the process remains running?
server.close
The session middleware seems to be the cause:
app.use(session({store: 'memory'}))
Ok, it's the scheduleGc https://github.com/curveball/session/blob/master/src/memorystore.ts#L97 ...
scheduleGc
The text was updated successfully, but these errors were encountered:
Yes... any further thoughts about this? I don't know if this is easily fixable, but I suppose we could add a function to stop the interval.
Sorry, something went wrong.
Definitely opting out will be awesome. Right now I'm monkey-patching setTimeout so that I can close it on server close ..
No branches or pull requests
Any idea why after
server.close
the process remains running?The session middleware seems to be the cause:
Ok, it's the
scheduleGc
https://github.com/curveball/session/blob/master/src/memorystore.ts#L97 ...The text was updated successfully, but these errors were encountered: