-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Labels
Description
Expected Behavior
lsof -i tcp -n -P
should not show any daprd or node processes running once our app stops
Actual 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 through server.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
shubham1172 and rzyns