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
The problem:
We're using ZIO.fromFuture to bridge the gap between ZIO and Akka. This creates deamon fibers that are detached from the fiber controlling the Akka HTTP server. That potentially means that when the server is killed, the long running fibers will still be alive.
Solution: zio.ZScope
The text was updated successfully, but these errors were encountered:
The problem:
We're using
ZIO.fromFuture
to bridge the gap between ZIO and Akka. This creates deamon fibers that are detached from the fiber controlling the Akka HTTP server. That potentially means that when the server is killed, the long running fibers will still be alive.Solution:
zio.ZScope
The text was updated successfully, but these errors were encountered: