Skip to content

Commit 943a726

Browse files
authored
Fix currentServiceAccount debug message (#2765)
Signed-off-by: Alexander Greene <[email protected]>
1 parent dc7b00b commit 943a726

File tree

1 file changed

+1
-1
lines changed
  • pkg/controller/registry/reconciler

1 file changed

+1
-1
lines changed

pkg/controller/registry/reconciler/grpc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ func (c *GrpcRegistryReconciler) currentServiceAccount(source grpcCatalogSourceD
150150
serviceAccountName := source.ServiceAccount().GetName()
151151
serviceAccount, err := c.Lister.CoreV1().ServiceAccountLister().ServiceAccounts(source.GetNamespace()).Get(serviceAccountName)
152152
if err != nil {
153-
logrus.WithField("service", serviceAccount).Debug("couldn't find service in cache")
153+
logrus.WithField("serviceAccount", serviceAccount).Debug("couldn't find serviceAccount in cache")
154154
return nil
155155
}
156156
return serviceAccount

0 commit comments

Comments
 (0)