Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

v0.5.0

Compare
Choose a tag to compare
@marten-seemann marten-seemann released this 30 Aug 09:49
· 14 commits to master since this release
1247ac6

This release implements a clean shutdown logic. In Go, it's not possible to shutdown cleanly by canceling contexts, since there's no way to know when Go routines have actually shut down. Instead, we now have a Close method, which makes sure that everything is cleanly shut down before returning.

Breaking Changes:

  • remove context.Context from constructors, add Close method: #109

Fixes

  • fix stream deadlines: #107