We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01b8e5b commit 7abbd42Copy full SHA for 7abbd42
pkg/source/source.go
@@ -202,7 +202,7 @@ eventloop:
202
// NewChannelBroadcaster creates a new ChannelBroadcaster for the given channel.
203
// A ChannelBroadcaster is a wrapper around a channel that allows multiple listeners to all
204
// receive the events from the channel.
205
-func NewChannelBroadcaster[T any](source <-chan event.TypedGenericEvent[T]) *channelBroadcaster[T] {
+func NewChannelBroadcaster[T any](source <-chan event.TypedGenericEvent[T]) *channelBroadcaster[T] { //nolint:revive
206
return &channelBroadcaster[T]{
207
source: source,
208
}
0 commit comments