-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
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
Leaking Handle #186
Comments
Is this more of a bug than enhancement? |
The original bug has been fixed with a hack, but we need to fix the root cause rather than terminating forcefully. |
This issue has been automatically marked as stale because it has not had activity in the last 60 days. It will be closed in the next 7 days unless it is tagged (pinned, good first issue, help wanted or triaged/resolved) or other activity occurs. Thank you for your contributions. |
Expected Behavior
lsof -i tcp -n -P
should not show any daprd or node processes running once our app stopsActual Behavior
Processes are not correctly closing. This seems to happen in Actors when
server.actors.init()
was called and at least 1 actor was registered throughserver.actors.registerActor(<Class>)
Afterwards when stopping the server, it hangs
A fix was applied through PR #184 that will force our HTTP Server to close after 1 second, resolving tests. The root cause however stays present
The text was updated successfully, but these errors were encountered: