Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix memory issue in PriorityQueue Slice method #136

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 7 additions & 1 deletion flow/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,11 @@ func (pq *PriorityQueue) Update(item *Item, newEpoch int64) {

// Slice returns a sliced PriorityQueue using the given bounds.
func (pq PriorityQueue) Slice(start, end int) PriorityQueue {
return pq[start:end]
// Create a new slice with the desired length
subQueue := make(PriorityQueue, end-start)

// Copy the elements from the original slice to the new slice
copy(subQueue, pq[start:end])

return subQueue
}