Skip to content

Commit

Permalink
fix the build
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryax committed Feb 27, 2025
1 parent 2d8e961 commit 0442cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/receiver/scriptedinputsreceiver/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func (i *stdoutOperator) readOutput(ctx context.Context, r io.Reader) {
scanner.Split(i.splitFunc)

for scanner.Scan() {
decoded, err := i.decoder.Decode(scanner.Bytes())
decoded, err := i.decoder.Bytes(scanner.Bytes())
if err != nil {
i.logger.Errorw("Failed to decode data", zap.Error(err))
continue
Expand Down

0 comments on commit 0442cbe

Please sign in to comment.