Update changelog

This commit is contained in:
Vladimir Mihailenco 2021-05-26 15:12:25 +03:00
parent 8e8510431d
commit 37f5a2b1cd
2 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,11 @@
> :heart:
> [**Uptrace.dev** - All-in-one tool to optimize performance and monitor errors & logs](https://uptrace.dev)
## v8.9
- Changed `PubSub.Channel` to only rely on `Ping` result. You can now use `WithChannelSize`,
`WithChannelHealthCheckInterval`, and `WithChannelSendTimeout` to override default settings.
## v8.8
- To make updating easier, extra modules now have the same version as go-redis does. That means that

View File

@ -484,7 +484,7 @@ func WithChannelHealthCheckInterval(d time.Duration) ChannelOption {
}
}
// WithChannelSendTimeout specifies that channel send timeout after which
// WithChannelSendTimeout specifies the channel send timeout after which
// the message is dropped.
//
// The default is 60 seconds.