Skip to content

Commit

Permalink
fixup! NOJIRA Break PodReconciler.Reconcile() into helpers
Browse files Browse the repository at this point in the history
Co-authored-by: João Alves <[email protected]>
  • Loading branch information
miguelbernadi and joaoqalves authored Jan 8, 2024
1 parent 42d9d71 commit 1c09d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controllers/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ func (r *PodReconciler) addToCaches(namespacedName string, podImages []string) {
r.podImages[namespacedName] = podImages
}

func (r *PodReconciler) checkImageCached(namespacedName string) bool {
func (r *PodReconciler) isImageCached(namespacedName string) bool {
_, ok := r.podImages[namespacedName]
return ok
}
Expand Down

0 comments on commit 1c09d43

Please sign in to comment.