Skip to content

Commit

Permalink
Merge pull request opensearch-project#218 from kakkoyun/clean_obj
Browse files Browse the repository at this point in the history
Clean unintentionally checked in file
  • Loading branch information
brancz authored Jan 20, 2022
2 parents c02edad + 8194f69 commit 103a791
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 103a791

Please sign in to comment.