Skip to content

Commit

Permalink
Clean unintentionally checked in file
Browse files Browse the repository at this point in the history
Signed-off-by: Kemal Akkoyun <kakkoyun@gmail.com>
  • Loading branch information
kakkoyun committed Jan 20, 2022
1 parent 4337793 commit 8194f69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file removed pkg/agent/parca-agent.bpf.o
Binary file not shown.
3 changes: 2 additions & 1 deletion pkg/agent/write_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,11 @@ func (b *Batcher) batchLoop(ctx context.Context) error {
ctx,
&profilestorepb.WriteRawRequest{Series: batch},
); err != nil {
level.Error(b.logger).Log("msg", "Writeclient failed to send profiles", "err", err)
level.Error(b.logger).Log("msg", "Write client failed to send profiles", "err", err)
return err
}

level.Debug(b.logger).Log("msg", "Write client has sent profiles", "count", len(batch))
return nil
}

Expand Down

0 comments on commit 8194f69

Please sign in to comment.