Skip to content

Commit

Permalink
I r dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
thorfour committed Oct 3, 2024
1 parent 57202d2 commit 624d2bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reporter/offline.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"time"

"github.com/apache/arrow/go/v16//arrow"
"github.com/apache/arrow/go/v16/arrow"
"github.com/apache/arrow/go/v16/arrow/array"
"github.com/apache/arrow/go/v16/arrow/ipc"
"github.com/apache/arrow/go/v16/arrow/memory"
Expand Down Expand Up @@ -154,7 +154,7 @@ func (o *OfflineReporter) writeSamples(ctx context.Context, buf *bytes.Buffer) (

func (o *OfflineReporter) writeLocations(ctx context.Context, buf *bytes.Buffer) error {
lw := NewLocationsWriter(o.pr.mem)
stacktraceIDBuilder := array.NewBuilder(o.pr.mem, arrow.BINARY)
stacktraceIDBuilder := array.NewBuilder(o.pr.mem, arrow.BinaryTypes.Binary)
for k, _ := range o.stacktraceIDs {
id := [16]byte(k)
if err := o.pr.buildStacktraceRecordOne(lw, id[:16]); err != nil {
Expand Down

0 comments on commit 624d2bb

Please sign in to comment.