Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Commit

Permalink
Removed wrong panic (#1183)
Browse files Browse the repository at this point in the history
Signed-off-by: Francesco Guardiani <[email protected]>
  • Loading branch information
slinkydeveloper authored Apr 30, 2020
1 parent 7a222bd commit 48a9bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kafka/channel/pkg/dispatcher/dispatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ func (d *KafkaDispatcher) subscribe(channelRef eventingchannels.ChannelReference
// this goroutine logs errors incoming
go func() {
for err = range consumerGroup.Errors() {
panic(err)
d.logger.Warn("Error in consumer group", zap.Error(err))
}
}()

Expand Down

0 comments on commit 48a9bd1

Please sign in to comment.