You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
The trackConn function in the listener stores each maConn in the __connections array on the server, in order to close them when the listener is closed.
close is an async method so there could be an unhandledPromiseRejection here, but that's a separate issue.
It doesn't ever seem to remove them from the array. We should be working out if the MaConn is closed at any point - then we can remove them from the list since it won't be necessary to close them when the listener is stopped.
The text was updated successfully, but these errors were encountered:
- Converts to typescript
- Only named exports
- No more CJS, only ESM
- Runs tests on all supported environments
- Adds auto-publish
- Adds dependabot
Fixes#139
BREAKING CHANGE: switch to named exports, ESM only
The
trackConn
function in the listener stores each maConn in the__connections
array on the server, in order to close them when the listener is closed.close
is an async method so there could be anunhandledPromiseRejection
here, but that's a separate issue.It doesn't ever seem to remove them from the array. We should be working out if the MaConn is closed at any point - then we can remove them from the list since it won't be necessary to close them when the listener is stopped.
The text was updated successfully, but these errors were encountered: