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
3 changes: 3 additions & 0 deletions reconciler/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ func (r *Reconciler) queueChanges(
); err != nil {
return err
}

continue
}

// Add all seen accounts to inactive reconciler queue.
Expand Down Expand Up @@ -825,6 +827,7 @@ func (r *Reconciler) reconcileInactiveAccounts( // nolint:gocognit
shouldAttempt, head := r.shouldAttemptInactiveReconciliation(ctx)
if !shouldAttempt {
r.queueMap.Unlock(key)
r.inactiveQueueMutex.Unlock()
time.Sleep(inactiveReconciliationSleep)
continue
}
Expand Down