Skip to content

Commit

Permalink
fix: grpc client creates endless loops (#4976)
Browse files Browse the repository at this point in the history
  • Loading branch information
exu authored Feb 7, 2024
1 parent 3816e73 commit a63eb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/logs/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func (c GrpcClient) Get(ctx context.Context, id string) (chan events.LogResponse
} else if err != nil {
log.Errorw("error receiving log response", "error", err)
ch <- events.LogResponse{Error: err}
continue
return
}

// send to the channel
Expand Down

0 comments on commit a63eb4b

Please sign in to comment.