Skip to content

v2.2.4

Compare
Choose a tag to compare
@ghostdogpr ghostdogpr released this 02 Apr 06:00
· 41 commits to series/2.x since this release
9effe50

This release contains the following changes:

  • Made the grpc server shutdown timeout configurable. By default, zio-grpc was using shutdown then awaitTermination without any timeout, which prevents new connections and wait for existing connections to end. The problem is that if those connections are grpc streams, we are waiting forever. Instead, we use awaitTermination with a timeout, then call shutdownNow to force the grpc server to shutdown and interrupt the grpc streams. #117 by @ghostdogpr