Skip to content

Commit

Permalink
Fix currentServiceAccount debug message (#2765)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Greene <greene.al1991@gmail.com>

Upstream-repository: operator-lifecycle-manager
Upstream-commit: 943a726ab1a516bc231e2fe96d13fc2e47bf4448
  • Loading branch information
awgreene committed May 2, 2022
1 parent 0e05698 commit 8dfb00a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -150,7 +150,7 @@ func (c *GrpcRegistryReconciler) currentServiceAccount(source grpcCatalogSourceD
serviceAccountName := source.ServiceAccount().GetName()
serviceAccount, err := c.Lister.CoreV1().ServiceAccountLister().ServiceAccounts(source.GetNamespace()).Get(serviceAccountName)
if err != nil {
logrus.WithField("service", serviceAccount).Debug("couldn't find service in cache")
logrus.WithField("serviceAccount", serviceAccount).Debug("couldn't find serviceAccount in cache")
return nil
}
return serviceAccount
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8dfb00a

Please sign in to comment.