Skip to content
Prev Previous commit
Next Next commit
lint
  • Loading branch information
owen-d committed Dec 4, 2024
commit 2ecc1143b510d802b551ab94d05b1eb7eefaf27d
2 changes: 1 addition & 1 deletion pkg/blockbuilder/scheduler/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (q *JobQueue) Enqueue(job *types.Job, priority int) error {
}

// Dequeue gets the next available job and assigns it to a builder
func (q *JobQueue) Dequeue(builderID string) (*types.Job, bool, error) {
func (q *JobQueue) Dequeue(_ string) (*types.Job, bool, error) {
q.mu.Lock()
defer q.mu.Unlock()

Expand Down
Loading