Skip to content

Commit 75bd96e

Browse files
committed
avoid misses short circuit if request outstanding
1 parent f023cd8 commit 75bd96e

File tree

1 file changed

+1
-3
lines changed
  • pkg/controller/registry/resolver/cache

1 file changed

+1
-3
lines changed

pkg/controller/registry/resolver/cache/cache.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,7 @@ func (c *Cache) Namespaced(namespaces ...string) MultiCatalogOperatorFinder {
170170
if snapshot.Valid() {
171171
result.snapshots[key] = snapshot
172172
} else {
173-
if !snapshot.RequestSentinelActive() {
174-
misses = append(misses, key)
175-
}
173+
misses = append(misses, key)
176174
}
177175
}()
178176
}

0 commit comments

Comments
 (0)