Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exp/api/remote/remote_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func (r *API) Write(ctx context.Context, msgType WriteMessageType, msg any) (_ W
return WriteResponseStats{}, fmt.Errorf("compressing %w", err)
}
r.bufPool.Put(buf)
r.bufPool.Put(comprBuf)
defer r.bufPool.Put(comprBuf)

// Since we retry writes we need to track the total amount of accepted data
// across the various attempts.
Expand Down
Loading